-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcprofilestyle.css
109 lines (99 loc) · 2 KB
/
cprofilestyle.css
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'poppins',sans-serif;
}
body {
margin-top: 50px;
margin-bottom: 50px;
display: flex;
align-items: center;
justify-content: center;
background-image: url(https://images.alphacoders.com/550/550987.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
}
section {
position: relative;
max-width: 400px;
background-color: transparent;
border: 2px solid rgba(255, 255, 255, 0.5);
border-radius: 20px;
backdrop-filter: blur(55px);
display: flex;
justify-content: center;
align-items: center;
padding: 2rem 3rem;
}
h2 {
font-size: 2rem;
color: #fff;
text-align: center;
}
.inputbox {
position: relative;
margin: 5px 0;
max-width: 310px;
border-bottom: 2px solid #fff;
}
.inputbox label {
margin-top: 15px;
position: absolute;
top: 15%;
left: 5px;
transform: translateY(-50%);
color: #fff;
font-size: 1rem;
transition: all 0.5s ease-in-out;
}
.inputbox input {
margin-top: 15px;
width: 100%;
height: 25px;
background: transparent;
border: none;
outline: none;
font-size: 1rem;
padding: 0 35px 0 5px;
color: #fff;
}
.register {
margin: 35px 0;
font-size: 0.85rem;
color: #fff;
display: flex;
justify-content: space-between;
}
.register label {
display: flex;
align-items: center;
}
.register label input {
margin-right: 3px;
}
.register a {
color: #fff;
text-decoration: none;
font-weight: 600;
}
.register a:hover {
text-decoration: underline;
}
input {
width: 100%;
height: 40px;
border-radius: 40px;
background-color: rgb(147, 128, 7);
border: none;
outline: none;
cursor: pointer;
font-size: 1rem;
font-weight: 600;
transition: all 0.4s ease;
}
input:hover {
background-color: rgb(255, 255,255, 0.5);
}