-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
71 lines (64 loc) · 1.38 KB
/
profile.css
File metadata and controls
71 lines (64 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@keyframes animation1{
from{
top: -35%;
}
to{
top: -15%;
}
}
body{
display: flex;
justify-content: center;
align-items: center;
background-image: url('images/about.png');
background-repeat: no-repeat;
background-position: 0 40vh;
background-size: contain;
background-color: #eeeff1;
font-family: 'Poppins', sans-serif;
}
form{
/* display: flex;
flex-direction: column;
justify-content: center;
align-items: center; */
background: transparent;
background-color: #56567649;
color: white;
backdrop-filter: blur(2px);
position: relative;
padding: 20px;
border-radius: 10px;
top: -15%;
width: 270px;
z-index: 10;
animation-name: animation1;
animation-duration: 0.75s;
animation-delay: 0s;
animation-timing-function: ease-in-out;
}
form p{
padding: 3px;
border-radius: 5px;
padding-left: 5px;
background-color: rgba(0, 0, 0, 0.443);
}
form .image, form .sub{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
form .image img{
width: 100px;
}
input{
padding: 5px 10px;
font-size: 20px;
color: white;
font-weight: 600;
background: #fe5b3d;
border: none;
border-radius: 5px;
}