##// END OF EJS Templates
Updated spoiler style in MD theme
neko259 -
r1050:2e4ed54c default
parent child Browse files
Show More
@@ -1,521 +1,522 b''
1 1 * {
2 2 text-decoration: none;
3 3 font-weight: inherit;
4 4 }
5 5
6 6 b, strong {
7 7 font-weight: bold;
8 8 }
9 9
10 10 html {
11 11 background: #555;
12 12 color: #ffffff;
13 13 }
14 14
15 15 body {
16 16 margin: 0;
17 17 }
18 18
19 19 #admin_panel {
20 20 background: #FF0000;
21 21 color: #00FF00
22 22 }
23 23
24 24 .input_field_error {
25 25 color: #FF0000;
26 26 }
27 27
28 28 .title {
29 29 font-weight: bold;
30 30 color: #ffcc00;
31 31 }
32 32
33 33 .link, a {
34 34 color: #afdcec;
35 35 }
36 36
37 37 .block {
38 38 display: inline-block;
39 39 vertical-align: top;
40 40 }
41 41
42 42 .tag {
43 43 color: #FFD37D;
44 44 }
45 45
46 46 .post_id {
47 47 color: #fff380;
48 48 }
49 49
50 50 .post, .dead_post, .archive_post, #posts-table {
51 51 background: #333;
52 52 padding: 10px;
53 53 clear: left;
54 54 word-wrap: break-word;
55 55 border-top: 1px solid #777;
56 56 border-bottom: 1px solid #777;
57 57 }
58 58
59 59 .post + .post {
60 60 border-top: none;
61 61 }
62 62
63 63 .dead_post + .dead_post {
64 64 border-top: none;
65 65 }
66 66
67 67 .archive_post + .archive_post {
68 68 border-top: none;
69 69 }
70 70
71 71 .metadata {
72 72 padding-top: 5px;
73 73 margin-top: 10px;
74 74 border-top: solid 1px #666;
75 75 color: #ddd;
76 76 }
77 77
78 78 .navigation_panel, .tag_info {
79 79 background: #222;
80 80 margin-bottom: 5px;
81 81 margin-top: 5px;
82 82 padding: 10px;
83 83 border-bottom: solid 1px #888;
84 84 border-top: solid 1px #888;
85 85 color: #eee;
86 86 }
87 87
88 88 .navigation_panel .link:first-child {
89 89 border-right: 1px solid #fff;
90 90 font-weight: bold;
91 91 margin-right: 1ex;
92 92 padding-right: 1ex;
93 93 }
94 94
95 95 .navigation_panel .right-link {
96 96 border-left: 1px solid #fff;
97 97 border-right: none;
98 98 float: right;
99 99 margin-left: 1ex;
100 100 margin-right: 0;
101 101 padding-left: 1ex;
102 102 padding-right: 0;
103 103 }
104 104
105 105 .navigation_panel .link {
106 106 font-weight: bold;
107 107 }
108 108
109 109 .navigation_panel::after, .post::after {
110 110 clear: both;
111 111 content: ".";
112 112 display: block;
113 113 height: 0;
114 114 line-height: 0;
115 115 visibility: hidden;
116 116 }
117 117
118 118 .header {
119 119 border-bottom: solid 2px #ccc;
120 120 margin-bottom: 5px;
121 121 border-top: none;
122 122 margin-top: 0;
123 123 }
124 124
125 125 .footer {
126 126 border-top: solid 2px #ccc;
127 127 margin-top: 5px;
128 128 border-bottom: none;
129 129 margin-bottom: 0;
130 130 }
131 131
132 132 p, .br {
133 133 margin-top: .5em;
134 134 margin-bottom: .5em;
135 135 }
136 136
137 137 .post-form-w {
138 138 background: #333344;
139 139 border-top: solid 1px #888;
140 140 border-bottom: solid 1px #888;
141 141 color: #fff;
142 142 padding: 10px;
143 143 margin-bottom: 5px;
144 144 margin-top: 5px;
145 145 }
146 146
147 147 .form-row {
148 148 width: 100%;
149 149 }
150 150
151 151 .form-label {
152 152 padding: .25em 1ex .25em 0;
153 153 vertical-align: top;
154 154 }
155 155
156 156 .form-input {
157 157 padding: .25em 0;
158 158 }
159 159
160 160 .form-errors {
161 161 font-weight: bolder;
162 162 vertical-align: middle;
163 163 }
164 164
165 165 .post-form input:not([name="image"]), .post-form textarea {
166 166 background: #333;
167 167 color: #fff;
168 168 border: solid 1px;
169 169 padding: 0;
170 170 font: medium sans-serif;
171 171 width: 100%;
172 172 }
173 173
174 174 .post-form textarea {
175 175 resize: vertical;
176 176 }
177 177
178 178 .form-submit {
179 179 display: table;
180 180 margin-bottom: 1ex;
181 181 margin-top: 1ex;
182 182 }
183 183
184 184 .form-title {
185 185 font-weight: bold;
186 186 font-size: 2ex;
187 187 margin-bottom: 0.5ex;
188 188 }
189 189
190 190 .post-form input[type="submit"], input[type="submit"] {
191 191 background: #222;
192 192 border: solid 2px #fff;
193 193 color: #fff;
194 194 padding: 0.5ex;
195 195 }
196 196
197 197 input[type="submit"]:hover {
198 198 background: #060;
199 199 }
200 200
201 201 blockquote {
202 202 border-left: solid 2px;
203 203 padding-left: 5px;
204 204 color: #B1FB17;
205 205 margin: 0;
206 206 }
207 207
208 208 .post > .image {
209 209 float: left;
210 210 margin: 0 1ex .5ex 0;
211 211 min-width: 1px;
212 212 text-align: center;
213 213 display: table-row;
214 214 }
215 215
216 216 .post > .metadata {
217 217 clear: left;
218 218 }
219 219
220 220 .get {
221 221 font-weight: bold;
222 222 color: #d55;
223 223 }
224 224
225 225 * {
226 226 text-decoration: none;
227 227 }
228 228
229 229 .dead_post {
230 230 background-color: #442222;
231 231 }
232 232
233 233 .archive_post {
234 234 background-color: #000;
235 235 }
236 236
237 237 .mark_btn {
238 238 border: 1px solid;
239 239 min-width: 2ex;
240 240 padding: 2px 2ex;
241 241 }
242 242
243 243 .mark_btn:hover {
244 244 background: #555;
245 245 }
246 246
247 247 .quote {
248 248 color: #92cf38;
249 249 font-style: italic;
250 250 }
251 251
252 252 .multiquote {
253 253 padding: 3px;
254 254 display: inline-block;
255 255 background: #222;
256 256 border-style: solid;
257 257 border-width: 1px 1px 1px 4px;
258 258 font-size: 0.9em;
259 259 }
260 260
261 261 .spoiler {
262 background: white;
263 color: white;
262 background: black;
263 color: black;
264 padding: 0 1ex 0 1ex;
264 265 }
265 266
266 267 .spoiler:hover {
267 color: black;
268 color: #ddd;
268 269 }
269 270
270 271 .comment {
271 272 color: #eb2;
272 273 }
273 274
274 275 a:hover {
275 276 text-decoration: underline;
276 277 }
277 278
278 279 .last-replies {
279 280 margin-left: 3ex;
280 281 margin-right: 3ex;
281 282 border-left: solid 1px #777;
282 283 border-right: solid 1px #777;
283 284 }
284 285
285 286 .last-replies > .post:first-child {
286 287 border-top: none;
287 288 }
288 289
289 290 .thread {
290 291 margin-bottom: 3ex;
291 292 margin-top: 1ex;
292 293 }
293 294
294 295 .post:target {
295 296 border: solid 2px white;
296 297 }
297 298
298 299 pre{
299 300 white-space:pre-wrap
300 301 }
301 302
302 303 li {
303 304 list-style-position: inside;
304 305 }
305 306
306 307 .fancybox-skin {
307 308 position: relative;
308 309 background-color: #fff;
309 310 color: #ddd;
310 311 text-shadow: none;
311 312 }
312 313
313 314 .fancybox-image {
314 315 border: 1px solid black;
315 316 }
316 317
317 318 .image-mode-tab {
318 319 background: #444;
319 320 color: #eee;
320 321 margin-top: 5px;
321 322 padding: 5px;
322 323 border-top: 1px solid #888;
323 324 border-bottom: 1px solid #888;
324 325 }
325 326
326 327 .image-mode-tab > label {
327 328 margin: 0 1ex;
328 329 }
329 330
330 331 .image-mode-tab > label > input {
331 332 margin-right: .5ex;
332 333 }
333 334
334 335 #posts-table {
335 336 margin-top: 5px;
336 337 margin-bottom: 5px;
337 338 }
338 339
339 340 .tag_info > h2 {
340 341 margin: 0;
341 342 }
342 343
343 344 .post-info {
344 345 color: #ddd;
345 346 margin-bottom: 1ex;
346 347 }
347 348
348 349 .moderator_info {
349 350 color: #e99d41;
350 351 float: right;
351 352 font-weight: bold;
352 353 opacity: 0.4;
353 354 }
354 355
355 356 .moderator_info:hover {
356 357 opacity: 1;
357 358 }
358 359
359 360 .refmap {
360 361 font-size: 0.9em;
361 362 color: #ccc;
362 363 margin-top: 1em;
363 364 }
364 365
365 366 .fav {
366 367 color: yellow;
367 368 }
368 369
369 370 .not_fav {
370 371 color: #ccc;
371 372 }
372 373
373 374 .role {
374 375 text-decoration: underline;
375 376 }
376 377
377 378 .form-email {
378 379 display: none;
379 380 }
380 381
381 382 .bar-value {
382 383 background: rgba(50, 55, 164, 0.45);
383 384 font-size: 0.9em;
384 385 height: 1.5em;
385 386 }
386 387
387 388 .bar-bg {
388 389 position: relative;
389 390 border-top: solid 1px #888;
390 391 border-bottom: solid 1px #888;
391 392 margin-top: 5px;
392 393 overflow: hidden;
393 394 }
394 395
395 396 .bar-text {
396 397 padding: 2px;
397 398 position: absolute;
398 399 left: 0;
399 400 top: 0;
400 401 }
401 402
402 403 .page_link {
403 404 background: #444;
404 405 border-top: solid 1px #888;
405 406 border-bottom: solid 1px #888;
406 407 padding: 5px;
407 408 color: #eee;
408 409 font-size: 2ex;
409 410 }
410 411
411 412 .skipped_replies {
412 413 padding: 5px;
413 414 margin-left: 3ex;
414 415 margin-right: 3ex;
415 416 border-left: solid 1px #888;
416 417 border-right: solid 1px #888;
417 418 border-bottom: solid 1px #888;
418 419 background: #000;
419 420 }
420 421
421 422 .current_page {
422 423 padding: 2px;
423 424 background-color: #afdcec;
424 425 color: #000;
425 426 }
426 427
427 428 .current_mode {
428 429 font-weight: bold;
429 430 }
430 431
431 432 .gallery_image {
432 433 border: solid 1px;
433 434 padding: 0.5ex;
434 435 margin: 0.5ex;
435 436 text-align: center;
436 437 }
437 438
438 439 code {
439 440 border: dashed 1px #ccc;
440 441 background: #111;
441 442 padding: 2px;
442 443 font-size: 1.2em;
443 444 display: inline-block;
444 445 }
445 446
446 447 pre {
447 448 overflow: auto;
448 449 }
449 450
450 451 .img-full {
451 452 background: #222;
452 453 border: solid 1px white;
453 454 }
454 455
455 456 .tag_item {
456 457 display: inline-block;
457 458 margin: 0.2ex;
458 459 padding: 0.1ex;
459 460 }
460 461
461 462 #id_models li {
462 463 list-style: none;
463 464 }
464 465
465 466 #id_q {
466 467 margin-left: 1ex;
467 468 }
468 469
469 470 ul {
470 471 padding-left: 0px;
471 472 }
472 473
473 474 .quote-header {
474 475 border-bottom: 2px solid #ddd;
475 476 margin-bottom: 1ex;
476 477 padding-bottom: .5ex;
477 478 color: #ddd;
478 479 font-size: 1.2em;
479 480 }
480 481
481 482 /* Reflink preview */
482 483 .post_preview {
483 484 border-left: 1px solid #777;
484 485 border-right: 1px solid #777;
485 486 max-width: 600px;
486 487 }
487 488
488 489 /* Code highlighter */
489 490 .hljs {
490 491 color: #fff;
491 492 background: #000;
492 493 display: inline-block;
493 494 }
494 495
495 496 .hljs, .hljs-subst, .hljs-tag .hljs-title, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title {
496 497 color: #fff;
497 498 }
498 499
499 500 #up {
500 501 position: fixed;
501 502 bottom: 5px;
502 503 right: 5px;
503 504 border: 1px solid #777;
504 505 background: #000;
505 506 padding: 4px;
506 507 }
507 508
508 509 .user-cast {
509 510 border: solid #ffffff 1px;
510 511 padding: .2ex;
511 512 background: #152154;
512 513 color: #fff;
513 514 }
514 515
515 516 .highlight {
516 517 background-color: #222;
517 518 }
518 519
519 520 .post-button-form > button:hover {
520 521 text-decoration: underline;
521 522 }
General Comments 0
You need to be logged in to leave comments. Login now