blob: 4d2231ca14b35eb86f59d621af3ae127ff456075 (
plain) (
blame)
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
|
.section {
background-color: none;
}
html {
background: url("bg.jpg");
background-attachment: fixed;
background-size: cover;
image-rendering: pixelated;
}
@keyframes fire
{
0% {text-shadow: 0 0 20px #fefcc9,
10px -10px 30px #feec85,
-20px -20px 40px #ffae34,
20px -40px 50px #ec760c,
-20px -60px 60px #cd4606,
0 -80px 70px #973716,
10px -90px 80px #451b0e;}
100% {text-shadow: 0 0 20px #fefcc9,
10px -10px 30px #fefcc9,
-20px -20px 40px #feec85,
22px -42px 60px #ffae34,
-22px -58px 50px #ec760c,
0 -82px 80px #cd4606,
10px -90px 80px #973716;}
}
.hellfire {
color: var(--orange);
animation: fire 1s ease-in-out infinite alternate;
}
|