-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (41 loc) · 944 Bytes
/
style.css
File metadata and controls
44 lines (41 loc) · 944 Bytes
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
body {
background-color: #222;
color: #fff;
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
text-align: center;
}
.glow {
font-size: 4em;
color: #ff8c00;
text-shadow: 0 0 10px #ff8c00,
0 0 20px #ff8c00,
0 0 30px #ff8c00,
0 0 40px #ff8c00;
animation: glow 1s ease-in-out infinite;
}
@keyframes glow {
0% {
text-shadow: 0 0 10px #ff8c00,
0 0 20px #ff8c00,
0 0 30px #ff8c00,
0 0 40px #ff8c00;
}
50% {
text-shadow: 0 0 15px #ff8c00,
0 0 30px #ff8c00,
0 0 45px #ff8c00,
0 0 55px #ff8c00;
}
100% {
text-shadow: 0 0 10px #ff8c00,
0 0 20px #ff8c00,
0 0 30px #ff8c00,
0 0 40px #ff8c00;
}
}