-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (47 loc) · 855 Bytes
/
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
body {
margin: 0px;
background-color: black;
overflow: hidden;
cursor: default;
}
@font-face {
font-family: bebas;
src: url(BebasNeue-Regular.ttf);
}
#coverScreen {
position: absolute;
height: 100%;
width: 100%;
background: linear-gradient(to bottom right, #ff0018, #ff00ff);
opacity: 0.5;
}
#interactionGate {
position: absolute;
height: 100%;
width: 100%;
}
h1 {
font-family: bebas;
position: absolute;
margin: 0 auto;
text-align: center;
width: 100%;
color: white;
font-size: 25vw;
}
#soundOn {
top: calc(50% - 14vw);
animation-name: fadeSwap;
animation-iteration-count: infinite;
animation-duration: 2s;
animation-timing-function: ease-in-out;
}
@keyframes fadeSwap {
0% {opacity: 0.25;}
50% {opacity: 1;}
100% {opacity: 0.25;}
}
@keyframes fade {
0% {opacity: 0.25;}
100% {opacity: 1;}
}