blob: b5d768972e50694ddd66ae5e824ea8c3e328ed1b (
plain)
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
|
body {
background-color: black;
color: white;
font-family: sans;
}
a {
color: #fefefe;
text-decoration: none;
}
a:visited {
color: gray;
}
body.watch {
text-align: center;
}
body.watch #infos {
width: 300px;
height: 80px;
margin: auto;
border: 1px dotted gray;
visibility: hidden;
}
body.watch #infos a {
float: left;
}
body.watch #logging {
height: 200px;
font-family: monospace;
color: white;
text-align: left;
font-size: 12px;
visibility: hidden;
overflow-y: scroll;
}
body.watch #trigger:hover #logging {
visibility: visible;
}
body.watch #trigger:hover #infos {
visibility: visible;
}
body.list {
font-size: 36px;
}
body.list a {
vertical-align: super;
}
body.list video {
display: inline;
}
body.list > div {
overflow: hidden;
height: 60px;
white-space: nowrap;
}
body.list > div:hover {
background-color: #1a1a1a;
}
|