Show More
@@ -1,380 +1,379 b'' | |||
|
1 | 1 | html { |
|
2 | 2 | background: #555; |
|
3 | 3 | color: #ffffff; |
|
4 | 4 | } |
|
5 | 5 | |
|
6 | 6 | #admin_panel { |
|
7 | 7 | background: #FF0000; |
|
8 | 8 | color: #00FF00 |
|
9 | 9 | } |
|
10 | 10 | |
|
11 | 11 | .input_field { |
|
12 | 12 | |
|
13 | 13 | } |
|
14 | 14 | |
|
15 | 15 | .input_field_name { |
|
16 | 16 | |
|
17 | 17 | } |
|
18 | 18 | |
|
19 | 19 | .input_field_error { |
|
20 | 20 | color: #FF0000; |
|
21 | 21 | } |
|
22 | 22 | |
|
23 | 23 | .title { |
|
24 | 24 | font-weight: bold; |
|
25 | 25 | color: #ffcc00; |
|
26 | 26 | font-size: 2ex; |
|
27 | 27 | } |
|
28 | 28 | |
|
29 | 29 | .link, a { |
|
30 | 30 | color: #afdcec; |
|
31 | 31 | } |
|
32 | 32 | |
|
33 | 33 | .block { |
|
34 | 34 | display: inline-block; |
|
35 | 35 | vertical-align: top; |
|
36 | 36 | } |
|
37 | 37 | |
|
38 | 38 | .tag { |
|
39 | 39 | color: #b4cfec; |
|
40 | 40 | } |
|
41 | 41 | |
|
42 | 42 | .post_id { |
|
43 | 43 | color: #fff380; |
|
44 | 44 | } |
|
45 | 45 | |
|
46 | 46 | .post, .dead_post, #posts-table { |
|
47 | 47 | background: #333; |
|
48 | 48 | margin: 5px; |
|
49 | 49 | padding: 10px; |
|
50 | 50 | border: solid 1px #888; |
|
51 | 51 | clear: left; |
|
52 | 52 | word-wrap: break-word; |
|
53 | 53 | } |
|
54 | 54 | |
|
55 | 55 | .metadata { |
|
56 | 56 | padding-top: 5px; |
|
57 | 57 | margin-top: 10px; |
|
58 | 58 | border-top: solid 1px #666; |
|
59 | font-size: 0.9em; | |
|
60 | 59 | color: #ddd; |
|
61 | 60 | } |
|
62 | 61 | |
|
63 | 62 | .navigation_panel, .tag_info { |
|
64 | 63 | background: #444; |
|
65 | 64 | margin: 5px; |
|
66 | 65 | padding: 10px; |
|
67 | 66 | border: solid 1px #888; |
|
68 | 67 | color: #eee; |
|
69 | 68 | } |
|
70 | 69 | |
|
71 | 70 | .navigation_panel .link { |
|
72 | 71 | border-right: 1px solid #fff; |
|
73 | 72 | font-weight: bold; |
|
74 | 73 | margin-right: 1ex; |
|
75 | 74 | padding-right: 1ex; |
|
76 | 75 | } |
|
77 | 76 | .navigation_panel .link:last-child { |
|
78 | 77 | border-left: 1px solid #fff; |
|
79 | 78 | border-right: none; |
|
80 | 79 | float: right; |
|
81 | 80 | margin-left: 1ex; |
|
82 | 81 | margin-right: 0; |
|
83 | 82 | padding-left: 1ex; |
|
84 | 83 | padding-right: 0; |
|
85 | 84 | } |
|
86 | 85 | |
|
87 | 86 | .navigation_panel::after, .post::after { |
|
88 | 87 | clear: both; |
|
89 | 88 | content: "."; |
|
90 | 89 | display: block; |
|
91 | 90 | height: 0; |
|
92 | 91 | line-height: 0; |
|
93 | 92 | visibility: hidden; |
|
94 | 93 | } |
|
95 | 94 | |
|
96 | 95 | p { |
|
97 | 96 | margin-top: .5em; |
|
98 | 97 | margin-bottom: .5em; |
|
99 | 98 | } |
|
100 | 99 | |
|
101 | 100 | .post-form-w { |
|
102 | 101 | display: table; |
|
103 | 102 | background: #333344; |
|
104 | 103 | border: solid 1px #888; |
|
105 | 104 | color: #fff; |
|
106 | 105 | padding: 10px; |
|
107 | 106 | margin: 5px; |
|
108 | 107 | } |
|
109 | 108 | |
|
110 | 109 | .form-row { |
|
111 | 110 | display: table-row; |
|
112 | 111 | } |
|
113 | 112 | |
|
114 | 113 | .form-label, .form-input, .form-errors { |
|
115 | 114 | display: table-cell; |
|
116 | 115 | } |
|
117 | 116 | |
|
118 | 117 | .form-label { |
|
119 | 118 | padding: .25em 1ex .25em 0; |
|
120 | 119 | vertical-align: top; |
|
121 | 120 | } |
|
122 | 121 | |
|
123 | 122 | .form-input { |
|
124 | 123 | padding: .25em 0; |
|
125 | 124 | } |
|
126 | 125 | |
|
127 | 126 | .form-errors { |
|
128 | 127 | font-weight: bolder; |
|
129 | 128 | vertical-align: middle; |
|
130 | 129 | } |
|
131 | 130 | |
|
132 | 131 | .post-form input, .post-form textarea { |
|
133 | 132 | background: #333; |
|
134 | 133 | color: #fff; |
|
135 | 134 | border: solid 1px; |
|
136 | 135 | padding: 0; |
|
137 | 136 | width: 100%; |
|
138 | 137 | font: medium sans; |
|
139 | 138 | } |
|
140 | 139 | |
|
141 | 140 | .form-submit { |
|
142 | 141 | display: table; |
|
143 | 142 | margin-bottom: 1ex; |
|
144 | 143 | } |
|
145 | 144 | |
|
146 | 145 | .form-title { |
|
147 | 146 | font-weight: bold; |
|
148 | 147 | font-size: 2.5ex; |
|
149 | 148 | text-decoration: underline; |
|
150 | 149 | } |
|
151 | 150 | |
|
152 | 151 | input[type="submit"] { |
|
153 | 152 | background: #222; |
|
154 | 153 | border: solid 2px #fff; |
|
155 | 154 | color: #fff; |
|
156 | 155 | padding: 0.5ex; |
|
157 | 156 | } |
|
158 | 157 | |
|
159 | 158 | input[type="submit"]:hover { |
|
160 | 159 | background: #060; |
|
161 | 160 | } |
|
162 | 161 | |
|
163 | 162 | blockquote { |
|
164 | 163 | border-left: solid 2px; |
|
165 | 164 | padding-left: 5px; |
|
166 | 165 | color: #B1FB17; |
|
167 | 166 | margin: 0; |
|
168 | 167 | } |
|
169 | 168 | |
|
170 | 169 | .post > .image { |
|
171 | 170 | float: left; |
|
172 | 171 | margin: 0 1ex .5ex 0; |
|
173 | 172 | min-width: 1px; |
|
174 | 173 | text-align: center; |
|
175 | 174 | display: table-row; |
|
176 | 175 | } |
|
177 | 176 | |
|
178 | 177 | .post > .metadata { |
|
179 | 178 | clear: left; |
|
180 | 179 | } |
|
181 | 180 | |
|
182 | 181 | .get { |
|
183 | 182 | font-weight: bold; |
|
184 | 183 | color: #d55; |
|
185 | 184 | } |
|
186 | 185 | |
|
187 | 186 | * { |
|
188 | 187 | text-decoration: none; |
|
189 | 188 | } |
|
190 | 189 | |
|
191 | 190 | .dead_post { |
|
192 | 191 | background-color: #442222; |
|
193 | 192 | } |
|
194 | 193 | |
|
195 | 194 | .mark_btn { |
|
196 | 195 | border: 1px solid; |
|
197 | 196 | min-width: 2ex; |
|
198 | 197 | padding: 2px 2ex; |
|
199 | 198 | } |
|
200 | 199 | |
|
201 | 200 | .mark_btn:hover { |
|
202 | 201 | background: #555; |
|
203 | 202 | } |
|
204 | 203 | |
|
205 | 204 | .quote { |
|
206 | 205 | color: #92cf38; |
|
207 | 206 | font-style: italic; |
|
208 | 207 | } |
|
209 | 208 | |
|
210 | 209 | .spoiler { |
|
211 | 210 | background: white; |
|
212 | 211 | color: white; |
|
213 | 212 | } |
|
214 | 213 | |
|
215 | 214 | .spoiler:hover { |
|
216 | 215 | color: black; |
|
217 | 216 | } |
|
218 | 217 | |
|
219 | 218 | .comment { |
|
220 | 219 | color: #eb2; |
|
221 | 220 | font-style: italic; |
|
222 | 221 | } |
|
223 | 222 | |
|
224 | 223 | a:hover { |
|
225 | 224 | text-decoration: underline; |
|
226 | 225 | } |
|
227 | 226 | |
|
228 | 227 | .last-replies { |
|
229 | 228 | margin-left: 3ex; |
|
230 | 229 | } |
|
231 | 230 | |
|
232 | 231 | .thread { |
|
233 | 232 | margin-bottom: 3ex; |
|
234 | 233 | } |
|
235 | 234 | |
|
236 | 235 | .post:target { |
|
237 | 236 | border: solid 2px white; |
|
238 | 237 | } |
|
239 | 238 | |
|
240 | 239 | pre{ |
|
241 | 240 | white-space:pre-wrap |
|
242 | 241 | } |
|
243 | 242 | |
|
244 | 243 | li { |
|
245 | 244 | list-style-position: inside; |
|
246 | 245 | } |
|
247 | 246 | |
|
248 | 247 | .fancybox-skin { |
|
249 | 248 | position: relative; |
|
250 | 249 | background-color: #fff; |
|
251 | 250 | color: #ddd; |
|
252 | 251 | text-shadow: none; |
|
253 | 252 | } |
|
254 | 253 | |
|
255 | 254 | .fancybox-image { |
|
256 | 255 | border: 1px solid black; |
|
257 | 256 | } |
|
258 | 257 | |
|
259 | 258 | .image-mode-tab { |
|
260 | 259 | background: #444; |
|
261 | 260 | color: #eee; |
|
262 | 261 | display: table; |
|
263 | 262 | margin: 5px; |
|
264 | 263 | padding: 5px; |
|
265 | 264 | border: 1px solid #888; |
|
266 | 265 | } |
|
267 | 266 | |
|
268 | 267 | .image-mode-tab > label { |
|
269 | 268 | margin: 0 1ex; |
|
270 | 269 | } |
|
271 | 270 | |
|
272 | 271 | .image-mode-tab > label > input { |
|
273 | 272 | margin-right: .5ex; |
|
274 | 273 | } |
|
275 | 274 | |
|
276 | 275 | #posts-table { |
|
277 | 276 | margin: 5px; |
|
278 | 277 | } |
|
279 | 278 | |
|
280 | 279 | .tag_info { |
|
281 | 280 | display: table; |
|
282 | 281 | } |
|
283 | 282 | |
|
284 | 283 | .tag_info > h2 { |
|
285 | 284 | margin: 0; |
|
286 | 285 | } |
|
287 | 286 | |
|
288 | 287 | .post-info { |
|
289 | 288 | color: #ddd; |
|
290 | 289 | } |
|
291 | 290 | |
|
292 | 291 | .moderator_info { |
|
293 | 292 | color: #e99d41; |
|
294 | 293 | border: dashed 1px; |
|
295 | 294 | padding: 3px; |
|
296 | 295 | } |
|
297 | 296 | |
|
298 | 297 | .refmap { |
|
299 | 298 | font-size: 0.9em; |
|
300 | 299 | color: #ccc; |
|
301 | 300 | margin-top: 1em; |
|
302 | 301 | } |
|
303 | 302 | |
|
304 | 303 | .fav { |
|
305 | 304 | color: yellow; |
|
306 | 305 | } |
|
307 | 306 | |
|
308 | 307 | .not_fav { |
|
309 | 308 | color: #ccc; |
|
310 | 309 | } |
|
311 | 310 | |
|
312 | 311 | .role { |
|
313 | 312 | text-decoration: underline; |
|
314 | 313 | } |
|
315 | 314 | |
|
316 | 315 | .form-email { |
|
317 | 316 | display: none; |
|
318 | 317 | } |
|
319 | 318 | |
|
320 | 319 | .footer { |
|
321 | 320 | margin: 5px; |
|
322 | 321 | } |
|
323 | 322 | |
|
324 | 323 | .bar-value { |
|
325 | 324 | background: rgba(50, 55, 164, 0.45); |
|
326 | 325 | font-size: 0.9em; |
|
327 | 326 | height: 1.5em; |
|
328 | 327 | } |
|
329 | 328 | |
|
330 | 329 | .bar-bg { |
|
331 | 330 | position: relative; |
|
332 | 331 | border: solid 1px #888; |
|
333 | 332 | margin: 5px; |
|
334 | 333 | overflow: hidden; |
|
335 | 334 | } |
|
336 | 335 | |
|
337 | 336 | .bar-text { |
|
338 | 337 | padding: 2px; |
|
339 | 338 | position: absolute; |
|
340 | 339 | left: 0; |
|
341 | 340 | top: 0; |
|
342 | 341 | } |
|
343 | 342 | |
|
344 | 343 | .page_link { |
|
345 | 344 | display: table; |
|
346 | 345 | background: #444; |
|
347 | 346 | margin: 5px; |
|
348 | 347 | border: solid 1px #888; |
|
349 | 348 | padding: 5px; |
|
350 | 349 | font-weight: bolder; |
|
351 | 350 | color: #eee; |
|
352 | 351 | } |
|
353 | 352 | |
|
354 | 353 | .skipped_replies { |
|
355 | 354 | margin: 5px; |
|
356 | 355 | } |
|
357 | 356 | |
|
358 | 357 | .current_page { |
|
359 | 358 | border: solid 1px #afdcec; |
|
360 | 359 | padding: 2px; |
|
361 | 360 | } |
|
362 | 361 | |
|
363 | 362 | .current_mode { |
|
364 | 363 | font-weight: bold; |
|
365 | 364 | } |
|
366 | 365 | |
|
367 | 366 | .gallery_image { |
|
368 | 367 | border: solid 1px; |
|
369 | 368 | padding: 0.5ex; |
|
370 | 369 | margin: 0.5ex; |
|
371 | 370 | text-align: center; |
|
372 | 371 | } |
|
373 | 372 | |
|
374 | 373 | code { |
|
375 | 374 | border: dashed 1px #ccc; |
|
376 | 375 | background: #111; |
|
377 | 376 | padding: 2px; |
|
378 | 377 | font-size: 1.2em; |
|
379 | 378 | display: inline-block; |
|
380 | 379 | } |
General Comments 0
You need to be logged in to leave comments.
Login now