-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
54 lines (54 loc) · 868 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
48
49
50
51
52
53
54
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
h1 {
top: 50%;
left: 50%;
color: white;
position: absolute;
transform: translate(-50%,-50%);
}
.click {
width: 100%;
color: gray;
z-index: 999;
height: 100vh;
padding: 10px;
display: flex;
font-size: 50px;
position: fixed;
cursor: pointer;
text-align: center;
align-items: center;
justify-content: center;
}
.click.hidden {
opacity: 0;
width: 0px;
height: 0px;
display: none;
visibility: hidden;
}
.container {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
background: black;
}
.canvas {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
filter: blur(2px) contrast(10);
}
.audio {
width: 0px;
height: 0px;
display: none;
}