blob: 04e56a71082288eddf706c2c8343c64895f4f257 (
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
|
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 > div {
vertical-align: middle;
overflow: hidden;
height: 64px;
white-space: nowrap;
}
body.list > div:hover {
background-color: #1a1a1a;
}
|