Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
TheGameCenter
GitHub Repository: TheGameCenter/TheGameCenter.github.io
Path: blob/main/assets/css/games.min.css
7020 views
1
* {
2
margin: 0;
3
padding: 0;
4
box-sizing: border-box;
5
}
6
7
body {
8
min-height: 100vh;
9
background: #0c192c;
10
}
11
12
#button {
13
text-decoration: none;
14
color: #dc00d4;
15
border: 1px solid #dc00d4;
16
border-radius: 50px;
17
text-decoration: none;
18
padding: 5px;
19
margin: 100px;
20
}
21
22
#bold {
23
font-weight: 600;
24
}
25
26
/*
27
Loader Start
28
*/
29
.loader {
30
position: fixed;
31
top: 0;
32
left: 0;
33
width: 100vw;
34
height: 100vh;
35
display: flex;
36
align-items: center;
37
justify-content: center;
38
background: #0c192c;
39
}
40
41
.loader--hidden {
42
opacity: 0;
43
visibility: hidden;
44
}
45
46
.loader::after {
47
content: "";
48
width: 75px;
49
height: 75px;
50
border: 15px solid #ddd;
51
border-top-color: #ff6057;
52
border-radius: 50%;
53
animation: loading 0.75s ease infinite;
54
transition: opacity 0.75s, visibility 0.75s;
55
}
56
57
@keyframes loading {
58
from { transform: rotate(0turn)}
59
to { transform: rotate(1turn)}
60
}
61
62
/*
63
Var Loading Stop
64
*/
65
66
/*
67
Glowing Text Start
68
*/
69
70
.glowtext {
71
display: flex;
72
font-family: 'Poppins', sans-serif;
73
}
74
75
ul {
76
position: relative;
77
display: flex;
78
flex-direction: column;
79
gap: 30px;
80
}
81
82
ul li {
83
position: relative;
84
list-style: none;
85
transform: translate(0, 1000%);
86
}
87
88
ul li a {
89
position: relative;
90
font-size: 2em;
91
text-decoration: none;
92
line-height: 1em;
93
letter-spacing: 2px;
94
text-transform: uppercase;
95
color: transparent;
96
-webkit-text-stroke: 1px rgba(255,255,255,0.5);
97
}
98
99
ul li a::before {
100
content: attr(data-text);
101
position: absolute;
102
color: #fff;
103
width: 0%;
104
overflow: hidden;
105
transition: 1s;
106
border-right: 8px solid var(--clr);
107
-webkit-text-stroke: 1px var(--clr);
108
}
109
110
ul li a:hover::before {
111
width: 100%;
112
filter: drop-shadow(0 0 25px var(--clr));
113
}
114
115
/*
116
Var Glowing Text End
117
*/
118
119
.textfront {
120
text-align: center;
121
color: #ff6057;
122
filter: drop-shadow(0 0 25px var(--clr));
123
padding: 0px;
124
margin: 0px;
125
filter: drop-shadow(0 0 15px #ff6057);
126
}
127
128
.img {
129
box-shadow: 0 0 10px #00dc82;
130
}
131
132
}
133
134
.container {
135
margin: 155px;
136
padding: 5px;
137
text-align: center;
138
border: 1px solid #dc00d4;
139
border-radius: 10px;
140
color: #00ade1;
141
}
142
143
.container:hover{
144
145
}
146
147
148
.toptext {
149
text-align: center;
150
color: #ff6057;
151
filter: drop-shadow(0 0 25px var(--clr));
152
padding: 0px;
153
margin: 0px;
154
text-shadow: 0 0 20px #ff6057;
155
156
}
157
158
.games {
159
margin: 155px;
160
padding: 5px;
161
text-align: center;
162
color: #00ade1;
163
border: 1px solid #dc00d4;
164
border-radius: 10px;
165
}
166
167
.games:hover {
168
border: 1px solid #dc00d4;
169
color: #00ade1;
170
box-shadow: 0px 0px 4px #dc00d4;
171
}
172
173
.webgames {
174
margin: 155px;
175
padding: 5px;
176
text-align: center;
177
color: #00ade1;
178
border: 1px solid #dc00d4;
179
border-radius: 10px;
180
}
181
182
.webgames:hover {
183
border: 1px solid #dc00d4;
184
color: #00ade1;
185
box-shadow: 0px 0px 4px #dc00d4;
186
}
187
188
.button {
189
display: flex;
190
justify-content: center;
191
align-items: center;
192
flex-direction: column;
193
position: relative;
194
display: inline-block;
195
padding: 12px 36px;
196
margin: 10px 0;
197
text-decoration: none;
198
text-transform: uppercase;
199
color: #fff;
200
font-size: 18px;
201
letter-spacing: 2px;
202
border-radius: 40px;
203
background: #dc00d4;
204
overflow: hidden;
205
filter: drop-shadow(0 0 3px #dc00d4);
206
}
207
208
.games .button {
209
display: flex;
210
flex-direction: column;
211
margin: 10 px;
212
}
213
214
.button:hover{
215
filter: drop-shadow(0 0 10px #dc00d4);
216
transition: all 0.5s ease-out;
217
}
218
219
.button:active{
220
filter: drop-shadow(0 0 7px #dc00d4);
221
transition: all 0.5s ease-out;
222
}
223
224