-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
31 lines (28 loc) · 719 Bytes
/
style.css
File metadata and controls
31 lines (28 loc) · 719 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
::-webkit-scrollbar{
width: 0;
height: 0;
}
body {
background-color: #251f1f;
font-family: cursive;
}
.glow {
font-size: 80px;
color: #fff;
text-align: center;
position: relative;
top: 10pc;
animation-name: glowText;
animation-duration: 1s;
animation-iteration-count: infinite;
}
@keyframes glowText {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073, 0 0 50px #01ffff, 0 0 60px #ff0000, 0 0 70px #e60073;
animation-duration: 1s;
}
to {
text-shadow: 0 0 20px #fff, 0 0 30px #00ff9d, 0 0 40px #00ffdd, 0 0 50px #1100ff, 0 0 60px #c8ff00, 0 0 70px #66ff00, 0 0 80px #ff0080;
animation-duration: 1s;
}
}