-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdvdlikenav.css
82 lines (82 loc) · 1.2 KB
/
dvdlikenav.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
html,
body {
padding: 0;
margin: 0;
height: 100%;
}
* {
box-sizing: border-box;
}
#uis,
video {
position: absolute;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
}
body.debug-highlightUIBorder #uis {
border: 3px dashed rgba(255, 255, 0, 0.3);
}
body.debug video + video {
border-color: blue;
}
#ts {
position: absolute;
top: 1vw;
left: 50vw;
width: 49vw;
color: white;
background: black;
display: none;
font-family: monospace;
}
body.debug-tsLog #ts {
display: block;
}
#uis > div { /* scene-container */
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#uis > div > div { /* button */
position: absolute;
cursor: pointer;
}
body.debug-highlightButtons #uis > div > div { /* button */
background: rgba(0,0,255,0.5);
}
#rfs {
position: absolute;
z-index: 20;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-size: 10vw;
display: none;
}
#key {
display: none;
position: absolute;
z-index: 21;
left: 1em;
top: 1em;
font-family: monospace;
background: black;
color: white;
}
body.debug-showKeyInput #key {
display: block;
}
#scenes {
display: none;
position: absolute;
z-index: 22;
top: 3em;
left: 1em;
}
body.debug-showSceneSelector #scenes {
display: block;
}