-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
144 lines (122 loc) · 2.63 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
142
* {
margin: 0;
padding: 0;
}
/* Body & Main */
body {
background-color: #00DCC5;
width: 100vw;
height: 100vh;
overflow-y: hidden;
display: flex;
justify-content: center;
}
main {
width: 70vw;
height: 85vh;
background-color: azure;
margin: 4% 10.2%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
/* left */
.left {
background-image: radial-gradient(#05111F 85%, indigo);
border-radius: 0% 15% 15% 0%;
/* background-image: url(./Asset/leftCon.svg); */
height: 100%;
width: 50%;
position: relative;
}
.leftCon {
background: rgba(77, 81, 98, 0.4);
backdrop-filter: saturate(180%) blur(10px);
border-radius: 10% 8% 8% 10%;
padding-left: 2%;
padding-top: 4%;
color: white;
width: 54%;
height: 55%;
line-height: 2rem;
position: absolute;
top: 20%;
left: 25%;
border-right: 1px hotpink solid;
border-top: 1px hotpink solid;
border-left: 1px white solid;
border-bottom: 1px white solid;
}
.left h1 {
font-family: 'Montserrat', sans-serif;
margin-bottom: 18%;
letter-spacing: 0.18rem;
font-size: 1.6rem;
}
.welcome {
font-family: 'Roboto', sans-serif;
font-weight: 400;
font-size: 1.3em;
margin-bottom: 6%;
line-height: 25px;
letter-spacing: 0.1em;
}
.joined {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 330;
margin-bottom: 25%;
font-size: 1rem;
}
.alreadyAccount {
font-family: 'Roboto', sans-serif;
line-height: 60%;
margin-left: 1.5%;
font-weight: 200;
font-size: 1rem;
}
.signin {
text-decoration: none;
color: white;
text-align: center;
font-family: 'Lato', sans-serif;
font-weight: 500;
margin-left:1.5% ;
font-size: 1.2rem;
}
.top-left {
width: 18%;
height: 16%;
background-image: linear-gradient(rgb(13, 241, 13), black 90%);
border-radius: 50%;
position: absolute;
top: 11%;
left: 26%
}
.top-right {
width: 32%;
height: 26%;
border-radius: 50%;
position: absolute;
top: 5%;
right: 5%;
background-image: linear-gradient(-120deg, #400972 30%, #8404A0 60%, #CB01C3);
}
.bottom-right {
width: 32%;
height: 25%;
/* background-image: url(./Asset/bottom-right.svg); */
background-image: linear-gradient(#5f64e9e7 80%,#686ee9 100%);
border-radius: 50%;
position: absolute;
bottom: 9%;
right: 9%;
}
.bottom-left {
width: 30%;
height: 60%;
background-image: url(./Asset/bottom-left.svg);
position: absolute;
bottom: 4%;
left: 12%;
}