-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
141 lines (118 loc) · 2.4 KB
/
style.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
*{
margin:0;
padding:0;
border:0;
box-sizing: border-box;
}
body{
background-color: #1b1b1b;
color:white;
font-weight: 500;
display: flex;
min-height: 100vh;
}
main{
width:52vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
main h1{
color: #8880fe;
font-size: 3rem;
margin-bottom: 2rem;
}
main .social-media{
display: flex;
align-content:center;
}
main .social-media a {
text-decoration: none;
}
main .social-media img{
width: 36px;
margin-left: 20px;
}
main .social-media:first-child img{
margin-left: 0;
}
main .alternative{
margin-top: 1rem;
}
main .alternative span{
font-size: 1.1rem;
font-weight: 400;
color: rgba(255, 255, 255, 0.3);
position: relative;
}
main .alternative span::before, main .alternative span::after{
position: absolute;
content: '';
height: 1px;
width: 100px;
bottom: 50%;
right: 50px;
background: rgba(255, 255, 255, 0.3);
}
main .alternative span::after{
left: 50px;
}
main form{
display: flex;
flex-direction: column;
align-items: center;
}
main form label{
display: flex;
flex-direction: column;
}
main form label span{
font-size: 1.1rem;
margin-top: 2rem;
}
main form input{
background: #4b5165;
width: 300px;
height: 50px;
padding: 0 0.5rem;
margin-top: 1rem;
outline: none;
color: rgba(166,166,166);
font-size: 1rem;
border:1px solid #040b18;
border-radius: 10px;
}
main form input[type="submit"]{
cursor: pointer;
width: 50%;
margin-top: 4rem;
border: none;
border-radius: 32px;
background: #6c63ff;
color:white;
font-size: 1.1rem;
transition: all .3s ease-in-out;
}
main form input[type="submit"]:hover {
background: #5952d4;
}
section.images {
display: flex;
align-items: flex-end;
padding: 4rem;
}
section.images img{
width: 90%;
}
section.images .circle{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left:0;
background: linear-gradient(45deg, #E8CBC0, #636FA4);
clip-path: circle(40% at right 80%);
z-index: -1;
}