-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
105 lines (93 loc) · 2.29 KB
/
style.css
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
body {
background: linear-gradient(rgb(0,0,0), rgb(3,4,15));
margin: 0;
}
#canvas {
display: block;
filter:blur(1px);
z-index: 0;
}
#banner{
position: absolute;
top: 18%;
left: 50%;
transform: translate(-50%, -50%);
font-family: "Vibur", sans-serif;
color: #fff;
animation: pulsate 1.5s infinite alternate;
font-size: max(5vw, 57px);
z-index: 1;
font-weight: 400;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px #bc13fe,
0 0 82px #bc13fe,
0 0 92px #bc13fe,
0 0 102px #bc13fe,
0 0 151px #bc13fe;
}
#timer {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
justify-content: center;
color: #fff;
font-size: max(5vw, 50px);
-webkit-transition: opacity .5s ease-in-out;
-moz-transition: opacity .5s ease-in-out;
-ms-transition: opacity .5s ease-in-out;
-o-transition: opacity .5s ease-in-out;
transition: opacity .5s ease-in-out;
text-shadow:
0 0 7px #fff,
0 0 10px #fff,
0 0 21px #fff,
0 0 42px #bc13fe,
0 0 82px #bc13fe,
0 0 92px #bc13fe,
0 0 102px #bc13fe,
0 0 151px #bc13fe;
font-family: Avantgarde, TeX Gyre Adventor, URW Gothic L, sans-serif;
font-weight: 100%;
animation: pulsate 1.5s infinite alternate;
border: 0.2rem solid #fff;
border-radius: 2rem;
padding: 0.3em 0.8em 0.3em 0.8em;
backdrop-filter: blur(10px) saturate(180%);
-webkit-backdrop-filter: blur(10px) saturate(180%);
z-index: 1;
box-shadow: 0 0 .2rem #fff,
0 0 .2rem #fff,
0 0 2rem #5271ff,
0 0 0.8rem #5271ff,
0 0 2.8rem #bc13fe,
inset 0 0 1.3rem #bc13fe;
}
@keyframes pulsate {
100% {
text-shadow:
0 0 4px #fff,
0 0 11px #fff,
0 0 19px #fff,
0 0 40px #5271ff,
0 0 80px #5271ff,
0 0 90px #5271ff,
0 0 100px #5271ff,
0 0 150px #5271ff;
}
0% {
text-shadow:
0 0 2px #fff,
0 0 6px #fff,
0 0 10px #fff,
0 0 28px #5271ff,
0 0 63px #5271ff,
0 0 70px #5271ff,
0 0 84px #5271ff,
0 0 130px #5271ff;
}
}