-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
68 lines (57 loc) · 1.07 KB
/
index.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
:root{
--sspx: 2px;
}
html, body {
height: 100%;
width: 100%;
background-color: black;
margin: 0;
padding: 0;
overscroll-behavior: contain;
position: fixed;
}
main {
display: flex;
height: 100%;
width: 100%;
background-color: rgb(64, 64, 64);
}
audio{
display: none
}
#theCanvas{
cursor: none;
width: 100vw;
height: 100vh;
}
input#un-mute {
display: none;
}
.unmute img {
display: none;
position: absolute;
}
input#un-mute:checked ~ .unmute img {
display: initial;
}
input#un-mute:checked ~ .mute img {
display: none;
}
.muteimage{
width: 200px;
position: absolute;
filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(180deg) brightness(11118%) contrast(119%) drop-shadow(0px 0px var(--sspx) rgb(0, 0, 0));
}
#themenu{
position: absolute;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
visibility: hidden;
/* background-color: rgb(64, 64, 64); */
}