Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
TheGameCenter
GitHub Repository: TheGameCenter/TheGameCenter.github.io
Path: blob/main/assets/css/helpinstall.css
7017 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
.glowtext {
13
display: flex;
14
font-family: 'Poppins', sans-serif;
15
}
16
17
ul {
18
position: relative;
19
display: flex;
20
flex-direction: column;
21
gap: 30px;
22
}
23
24
ul li {
25
position: relative;
26
list-style: none;
27
transform: translate(0, 1000%);
28
}
29
30
ul li a {
31
position: relative;
32
font-size: 2em;
33
text-decoration: none;
34
line-height: 1em;
35
letter-spacing: 2px;
36
text-transform: uppercase;
37
color: transparent;
38
-webkit-text-stroke: 1px rgba(255,255,255,0.5);
39
}
40
41
ul li a::before {
42
content: attr(data-text);
43
position: absolute;
44
color: #fff;
45
width: 0%;
46
overflow: hidden;
47
transition: 1s;
48
border-right: 8px solid var(--clr);
49
-webkit-text-stroke: 1px var(--clr);
50
}
51
52
ul li a:hover::before {
53
width: 100%;
54
filter: drop-shadow(0 0 25px var(--clr));
55
}
56
57
.textfront {
58
text-align: center;
59
color: #ff6057;
60
filter: drop-shadow(0 0 25px var(--clr));
61
padding: 0px;
62
margin: 0px;
63
filter: drop-shadow(0 0 15px #ff6057);
64
}
65
66
.img {
67
box-shadow: 0 0 10px #00dc82;
68
}
69
70
.container {
71
color: #fff;
72
align-items: center;
73
align-content: center;
74
text-align: center;
75
}
76
77
.container strong {
78
font-size: 2rem;
79
}
80