-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
194 lines (188 loc) · 4.22 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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400&display=swap');
*{
box-sizing: border-box;
}
body{
margin: 0;
background-color: #1A1B1F;
font-family: 'Roboto Condensed', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items:center;
}
.header{
height: 25vh;
font-size: 4rem;
display: flex;
justify-content: center;
align-items:flex-end;
font-weight: 700;
letter-spacing: 2px;
animation: blink 3s infinite ease;
}
.main_area{
height: 75vh;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.card{
height: 200px;
width: 250px;
border-radius: 16px;
display: flex;
flex-direction: column;
justify-content: center;
margin-right: 5rem;
margin-left: 5rem;
cursor: pointer;
color: rgb(150, 147, 147);
background: linear-gradient(145deg, #1c1d21, #17181c);
box-shadow: 6px 6px 8px #101114, -6px -6px 8px #24252a;
}
a{
text-decoration: none ;
}
.card:hover{
transform: scale(1.05);
background: linear-gradient(120deg, #7cf1fa 0%, #69a6fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: #02fafa36 0px 0px 100px;
}
.activeCard{
background: #1A1B1F;
box-shadow: inset 6px 6px 8px #101114, inset -6px -6px 8px #24252a;
color: #29ffff;
text-decoration: none;
}
.card>*{
display: flex;
justify-content: center;
align-items: center;
}
.card_image{
height: 60%;
font-size: 70px;
}
.card_details{
height: 20%;
font-size: 1.4rem;
}
.popup_window{
visibility: hidden;
position: absolute;
border-radius: 1.5rem;
height: 15rem;
width: 25rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: rgb(150, 147, 147);
background: linear-gradient(145deg, #1c1d21, #17181c);
box-shadow: 6px 6px 8px #101114, -6px -6px 8px #24252a;
}
.popup_window.show{
visibility: visible;
}
.name_box{
height: 50%;
width: 80%;
display: flex;
justify-content: center;
align-items: center;
}
.enterBtnBox{
height: 20%;
width: 80%;
display: flex;
justify-content: center;
align-items: center;
}
.label{
font-size: 1.5rem;
font-weight: 800;
}
.textBox{
height: 40px;
width: 50%;
/* color: rgb(150, 147, 147); */
outline: none;
text-align: center;
font-size: 1.5rem;
font-weight: 600;
margin-left: 10px;
border-bottom: 1px solid rgb(150, 147, 147);
}
.enter{
height: 40px;
width: 160px;
margin-bottom: 30px;
border-radius: 1.5rem;
color: rgb(150, 147, 147);
background: linear-gradient(145deg, #1c1d21, #17181c);
box-shadow: 6px 6px 8px #101114, -6px -6px 8px #24252a;
display: flex;
justify-content: center;
align-items: center;
font-size: 1.5rem;
outline: none;
color: rgb(150, 147, 147);
}
.enter:hover{
transform: scale(1.05);
color: rgb(80, 220, 255);
}
#popUpMsg {
visibility: hidden;
min-width: 200px;
margin-left: -125px;
background-color: #1A1B1F;
color: rgb(201, 201, 201);
text-align: center;
padding: 0.7rem;
position: fixed;
z-index: 100;
left: 50%;
bottom: 80px;
font-size: 20px;
border-radius: 2rem;
}
#popUpMsg.show {
visibility: visible;
animation: fadein 2s ease, fadeout 2s 3.5s;
}
@keyframes blink {
0%{
color: rgb(150, 147, 147);
}
25%{
background: linear-gradient(120deg, #8df1f8 0%, #77affd 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
50%{
background: linear-gradient(120deg, #7cf1fa 0%, #69a6fc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: #02fafa2f 1px 1px 10px;
}
75%{
background: linear-gradient(120deg, #8df1f8 0%, #77affd 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
100%{
color: rgb(150, 147, 147);
}
}
@keyframes fadein {
from {bottom: 0; opacity: 0;}
to {bottom: 80px; opacity: 1;}
}
@keyframes fadeout {
from {bottom: 80px; opacity: 1;}
to {bottom: 0; opacity: 0;}
}