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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
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;
}
#newpostbtn {
text-align: center;
margin-top: 80px;
}
input[type="text"] {
-webkit-appearance: none;
-webkit-border-radius: 0;
}
#postForm {
border: 4px solid #928374;
background-color: #3c3836;
margin: auto;
}
#postForm tr > td:first-child {
background-color: #504945;
padding-left: 0.5em;
padding-right: 0.5em;
}
#postForm input[type="text"],
#postForm textarea,
#reply-name, #reply-options, #reply-comment {
box-sizing: border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
}
#reply-name, #reply-options, #reply-comment {
width: 100%;
}
#postForm #captcha {
display: block;
width: 100%;
}
.popup-box {
position: absolute;
width: min-content;
z-index: 9;
display: block;
}
|