-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverhear.css
59 lines (52 loc) · 981 Bytes
/
overhear.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
body {
color: black;
font-family: Hack, monospace;
}
#data {
color: #aaa;
text-shadow: 1px 1px rgba(0, 0, 0, 0.7);
display: none;
}
#mapping {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 10px;
background-color: transparent;
background: rgba(0, 0, 0, 0.2);
z-index: 100;
}
#graph {
position: absolute;
bottom: 0;
left: 0;
background-color: transparent;
width: 100vw;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: pixelated;
z-index: 100;
height: 10%;
}
.bar {
position: absolute;
top: 0;
height: 100%;
min-width: 1px;
min-height: 2px;
background-color: rgba(0, 0, 0, 0.2);
}
video {
position: fixed;
margin: 0;
padding: 0;
top: 0;
left: 0;
height: 100vh;
z-index: -1;
}
#curse {
z-index: 99;
background-color: red;
}