blob: 2df2921517ae0f7f08c2658dfcb91e0bc40a8bcd (
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
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
111
112
113
|
a, a:link, a:visited, a:hover, a:active {
text-decoration: none
}
a:link, a:visited, a:active {
color: black;
}
a:hover {
color: #de0808;
}
body {
background-color: #eef2fe;
color: black;
}
body.nsfw {
background-color: #ffffee;
color: #820404
}
.popup-box {
border: 4px solid #d3caf0;
background-color: #eff5ff;
}
.nsfw .popup-box {
border: 4px solid #f0e2d9;
background-color: #f9f9e0;
}
.box {
background-color: #eff5ff;
}
.nsfw .box {
background-color: #f9f9e0;
}
.box-alt {
background-color: #d3caf0;
}
.nsfw .box-alt {
background-color: #f0e2d9;
}
.quote {
color: #789922;
}
.post {
background-color: #d5daf0;
}
.nsfw .post {
background-color: #f0e0d6;
}
:target > div > .post {
background-color: #d6bad0;
}
.nsfw :target > div > .post {
background-color: #f0c0b0;
}
.title {
color: #0f0c5d;
}
.name, .tripcode {
color: #117743;
}
a.reply {
color: #af0a0f;
}
.replyLink {
color: #000080;
font-size: 0.8em;
}
#newpostbtn {
text-align: center;
margin-top: 80px;
}
#postForm {
margin: auto;
}
#postForm tr > td:first-child {
background-color: #98e;
border: 1px black;
padding-left: 0.5em;
padding-right: 0.5em;
}
#postForm input[type="text"],
#postForm textarea {
box-sizing: border-box;
-webkit-box-sizing:border-box;
-moz-box-sizing: border-box;
}
#postForm #captcha {
display: block;
width: 100%;
}
|