-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
117 lines (100 loc) · 1.61 KB
/
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
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
107
108
109
110
111
112
113
114
115
116
117
@font-face {
font-family: 'tty';
src: url('glass_tty_vt220.ttf');
}
body {
font-family: Hack, monospace;
}
#c3 {
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: pixelated;
image-rendering: crisp-edges;
}
body {
margin: 0;
padding: 0;
background: #1b0a22;
font-family: tty;
font-size: 10pt;
color: pink;
overflow: hidden;
}
#canvasholder {
display: inline-block;
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
}
canvas {
position: relative;
object-fit: contain;
height: inherit;
width: inherit;
object-position: 50% 50%;
display: none;
}
video {
display: none;
}
#c3 {
background: black;
display: inline-block;
}
#meter {
position: absolute;
top: 10px;
left: 10px;
width: 60%;
background-color: transparent;
font-size: 16pt;
}
.hit {
color: red;
}
#pos {
position: absolute;
right: 5px;
top: 5px;
color: green;
}
.loc {
position: absolute;
width: 1px;
height: 13px;
background: pink;
}
#cur {
left: 0;
background: green;
transition: all .75s linear;
}
#moments {
position: absolute;
top: 35px;
left: 10px;
width: 30%;
color: pink;
width: 630px;
}
#durbar {
position: absolute;
bottom: 20px;
left: 5%;
width: 80%;
height: 13px;
margin: auto;
border: 1px solid pink;
background: transparent;
}
#metadata {
text-overflow: ellipsis;
overflow: hidden;
position: absolute;
font-size: 10pt;
width: 90%;
top: 70px;
left: 10px;
transition: opacity 3s ease-in-out;
}