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, input, textarea, a, main.media code, a:hover {
color: #ffffff;
}
input[type="submit"]:hover, .checkboxtab:hover ~label{
color: #000000;
background: #ffffff;
cursor:pointer;
}
body {
background: black;
font-family: monospace;
font-size: medium;
}
div#topbar, article#main, main.media div, main.home div#options, main.info nav, main article, h1, h2, main.info article h4, textarea, input {
background:black;
border-color: white;
}
.editor div#leftbar, .editor #edittopbar, .editor div#rightbar, details, .editor .tabs {
background:black;
border-color: white;
}
.editor div#leftbarpanel, .editor div#rightbarpanel {
border: solid 1px;
}
.tabs .tab .content {
background: black;
}
.editor label.toogle:hover {
background: white;
}
.checkboxtab:checked ~label {
color: white;
background: black;
}
.editor {
background: black;
}
tr:hover, th, th a, .panel summary {
color: #000000;
background: #ffffff;
}
main.timeline p.eline {
color: black;
font-family: monospace;
}
img.icon {
filter: invert(1);
height: 10px;
}
tr:hover img.icon {
filter: invert(0);
}
main.media tr:hover a {
color: black;
}
|