-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·106 lines (104 loc) · 2.3 KB
/
style.css
File metadata and controls
executable file
·106 lines (104 loc) · 2.3 KB
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
106
:root {
--colorLogo: white;
--colorLine: white;
--colorAll: white;
--time: 4000ms;
}
* {
word-wrap: break-word;
}
body {
overflow: hidden;
margin: 0;
background: black;
}
label {
white-space: nowrap
}
#veras {
filter: url(#kill);
margin: 0;
text-transform: uppercase;
pointer-events: none;
/* font-family: "vf", sans-serif;
font-variation-settings: 'wdth' 75, 'wght' 900; */
font-family: "Bebas Neue", sans-serif;
font-size: 96px;
color: white;
z-index: 1;
position: absolute;
width:100vw;
height:100vh;
line-height:100vh;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(1);
text-align: center;
white-space: nowrap;
mix-blend-mode: exclusion;
/*text-shadow: -420px -500px 0 white, 420px -500px 0 white,
-820px -400px 0 white, 0px -400px 0 white, 820px -400px 0 white,
-420px -300px 0 white, 420px -300px 0 white,
-820px -200px 0 white, 0px -200px 0 white, 820px -200px 0 white,
-420px -100px 0 white, 420px -100px 0 white,
-820px 0px 0 white, 820px 0px 0 white,
-420px 100px 0 white, 420px 100px 0 white,
-820px 200px 0 white, 0px 200px 0 white, 820px 200px 0 white,
-420px 300px 0 white, 420px 300px 0 white,
-820px 400px 0 white, 0px 400px 0 white, 820px 400px 0 white,
-420px 500px 0 white, 420px 500px 0 white;*/
}
#flipX {
display: inline-block;
transform: scaleX(-1);
}
#bpm {
background: #0000;
color: white;
width: 50px;
}
#canvas {
z-index: 0;
display: block;
width: 100vw;
height: 100vh;
transform: scaleY(-1);
filter: url(#kill) url(#noiseFilter);
background: black;
position: absolute;
top: 0;
}
#controls {
position: absolute;
bottom: 0;
}
#controls,
#controls button,
#controls select {
padding: 0.5em;
background: #181a1bdd;
color: white;
filter: grayscale(90%);
}
svg {
display: none;
}
.anim #vera, .anim #fisher, .anim #era, .anim #clubber {
animation-name: anim;
animation-duration: var(--time);
animation-iteration-count: infinite;
}
#fisher {
animation-delay: calc(-3*var(--time)/4);
}
#era {
animation-delay: calc(-2*var(--time)/4);
}
#clubber {
animation-delay: calc(-1*var(--time)/4);
}
@keyframes anim {
0%, 100% {opacity: 1;}
20% {opacity: 0;}
80% {opacity: 0;}
}