blob: fb39ea49510e0dddf795b4fb72fa950c3acccfca (
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
|
a, a:link, a:visited, a:active {
color: #b16286;
text-decoration: none
}
a.reply {
color: #cc241d;
}
a:hover.reply {
color: #fb4934;
}
body {
background: #282828;
color: #ebdbb2;
font-family: Iosevka, monospace, sans-serif;
font-size: 0.9em;
}
.popup-box {
border: 4px solid #928374;
background-color: #3c3836;
}
.box, .box-alt {
background-color: #3c3836;
}
.quote {
color: #98971a;
}
.post {
background-color: #1d2021;
}
:target > div > .post {
background-color: #504945;
}
.subject {
color: #458588;
}
.name {
color: #b8bb26;
}
.tripcode {
color: #689d6a;
}
h1,h2,h3,h4,h5,h6 {
color: #fb4934;
margin-bottom: 0.1em;
}
.replyLink {
color: #83a598;
font-size: 0.8em;
}
|