##// END OF EJS Templates
Changed bumplimit and archived style in MD theme
neko259 -
r1225:ead9ef97 default
parent child Browse files
Show More
@@ -1,545 +1,545 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 display: table-row;
150 150 }
151 151
152 152 .form-label {
153 153 padding: .25em 1ex .25em 0;
154 154 vertical-align: top;
155 155 display: table-cell;
156 156 }
157 157
158 158 .form-input {
159 159 padding: .25em 0;
160 160 width: 100%;
161 161 display: table-cell;
162 162 }
163 163
164 164 .form-errors {
165 165 font-weight: bolder;
166 166 vertical-align: middle;
167 167 display: table-cell;
168 168 }
169 169
170 170 .post-form input:not([name="image"]), .post-form textarea, .post-form select {
171 171 background: #333;
172 172 color: #fff;
173 173 border: solid 1px;
174 174 padding: 0;
175 175 font: medium sans-serif;
176 176 width: 100%;
177 177 }
178 178
179 179 .post-form textarea {
180 180 resize: vertical;
181 181 }
182 182
183 183 .form-submit {
184 184 display: table;
185 185 margin-bottom: 1ex;
186 186 margin-top: 1ex;
187 187 }
188 188
189 189 .form-title {
190 190 font-weight: bold;
191 191 font-size: 2ex;
192 192 margin-bottom: 0.5ex;
193 193 }
194 194
195 195 .post-form input[type="submit"], input[type="submit"] {
196 196 background: #222;
197 197 border: solid 2px #fff;
198 198 color: #fff;
199 199 padding: 0.5ex;
200 200 }
201 201
202 202 input[type="submit"]:hover {
203 203 background: #060;
204 204 }
205 205
206 206 blockquote {
207 207 border-left: solid 2px;
208 208 padding-left: 5px;
209 209 color: #B1FB17;
210 210 margin: 0;
211 211 }
212 212
213 213 .post > .image {
214 214 float: left;
215 215 margin: 0 1ex .5ex 0;
216 216 min-width: 1px;
217 217 text-align: center;
218 218 display: table-row;
219 219 }
220 220
221 221 .post > .metadata {
222 222 clear: left;
223 223 }
224 224
225 225 .get {
226 226 font-weight: bold;
227 227 color: #d55;
228 228 }
229 229
230 230 * {
231 231 text-decoration: none;
232 232 }
233 233
234 234 .dead_post {
235 background-color: #442222;
235 border-left: solid 5px #982C2C;
236 236 }
237 237
238 238 .archive_post {
239 background-color: #000;
239 border-left: solid 5px #B7B7B7;
240 240 }
241 241
242 242 .mark_btn {
243 243 border: 1px solid;
244 244 padding: 2px 2ex;
245 245 display: inline-block;
246 246 margin: 0 5px 4px 0;
247 247 }
248 248
249 249 .mark_btn:hover {
250 250 background: #555;
251 251 }
252 252
253 253 .quote {
254 254 color: #92cf38;
255 255 font-style: italic;
256 256 }
257 257
258 258 .multiquote {
259 259 padding: 3px;
260 260 display: inline-block;
261 261 background: #222;
262 262 border-style: solid;
263 263 border-width: 1px 1px 1px 4px;
264 264 font-size: 0.9em;
265 265 }
266 266
267 267 .spoiler {
268 268 background: black;
269 269 color: black;
270 270 padding: 0 1ex 0 1ex;
271 271 }
272 272
273 273 .spoiler:hover {
274 274 color: #ddd;
275 275 }
276 276
277 277 .comment {
278 278 color: #eb2;
279 279 }
280 280
281 281 a:hover {
282 282 text-decoration: underline;
283 283 }
284 284
285 285 .last-replies {
286 286 margin-left: 3ex;
287 287 margin-right: 3ex;
288 288 border-left: solid 1px #777;
289 289 border-right: solid 1px #777;
290 290 }
291 291
292 292 .last-replies > .post:first-child {
293 293 border-top: none;
294 294 }
295 295
296 296 .thread {
297 297 margin-bottom: 3ex;
298 298 margin-top: 1ex;
299 299 }
300 300
301 301 .post:target {
302 302 border: solid 2px white;
303 303 }
304 304
305 305 pre{
306 306 white-space:pre-wrap
307 307 }
308 308
309 309 li {
310 310 list-style-position: inside;
311 311 }
312 312
313 313 .fancybox-skin {
314 314 position: relative;
315 315 background-color: #fff;
316 316 color: #ddd;
317 317 text-shadow: none;
318 318 }
319 319
320 320 .fancybox-image {
321 321 border: 1px solid black;
322 322 }
323 323
324 324 .image-mode-tab {
325 325 background: #444;
326 326 color: #eee;
327 327 margin-top: 5px;
328 328 padding: 5px;
329 329 border-top: 1px solid #888;
330 330 border-bottom: 1px solid #888;
331 331 }
332 332
333 333 .image-mode-tab > label {
334 334 margin: 0 1ex;
335 335 }
336 336
337 337 .image-mode-tab > label > input {
338 338 margin-right: .5ex;
339 339 }
340 340
341 341 #posts-table {
342 342 margin-top: 5px;
343 343 margin-bottom: 5px;
344 344 }
345 345
346 346 .tag_info > h2 {
347 347 margin: 0;
348 348 }
349 349
350 350 .post-info {
351 351 color: #ddd;
352 352 margin-bottom: 1ex;
353 353 }
354 354
355 355 .moderator_info {
356 356 color: #e99d41;
357 357 float: right;
358 358 font-weight: bold;
359 359 opacity: 0.4;
360 360 }
361 361
362 362 .moderator_info:hover {
363 363 opacity: 1;
364 364 }
365 365
366 366 .refmap {
367 367 font-size: 0.9em;
368 368 color: #ccc;
369 369 margin-top: 1em;
370 370 }
371 371
372 372 .fav {
373 373 color: yellow;
374 374 }
375 375
376 376 .not_fav {
377 377 color: #ccc;
378 378 }
379 379
380 380 .role {
381 381 text-decoration: underline;
382 382 }
383 383
384 384 .form-email {
385 385 display: none;
386 386 }
387 387
388 388 .bar-value {
389 389 background: rgba(50, 55, 164, 0.45);
390 390 font-size: 0.9em;
391 391 height: 1.5em;
392 392 }
393 393
394 394 .bar-bg {
395 395 position: relative;
396 396 border-top: solid 1px #888;
397 397 border-bottom: solid 1px #888;
398 398 margin-top: 5px;
399 399 overflow: hidden;
400 400 }
401 401
402 402 .bar-text {
403 403 padding: 2px;
404 404 position: absolute;
405 405 left: 0;
406 406 top: 0;
407 407 }
408 408
409 409 .page_link {
410 410 background: #444;
411 411 border-top: solid 1px #888;
412 412 border-bottom: solid 1px #888;
413 413 padding: 5px;
414 414 color: #eee;
415 415 font-size: 2ex;
416 416 }
417 417
418 418 .skipped_replies {
419 419 padding: 5px;
420 420 margin-left: 3ex;
421 421 margin-right: 3ex;
422 422 border-left: solid 1px #888;
423 423 border-right: solid 1px #888;
424 424 border-bottom: solid 1px #888;
425 425 background: #000;
426 426 }
427 427
428 428 .current_page {
429 429 padding: 2px;
430 430 background-color: #afdcec;
431 431 color: #000;
432 432 }
433 433
434 434 .current_mode {
435 435 font-weight: bold;
436 436 }
437 437
438 438 .gallery_image {
439 439 border: solid 1px;
440 440 padding: 0.5ex;
441 441 margin: 0.5ex;
442 442 text-align: center;
443 443 }
444 444
445 445 code {
446 446 border: dashed 1px #ccc;
447 447 background: #111;
448 448 padding: 2px;
449 449 font-size: 1.2em;
450 450 display: inline-block;
451 451 }
452 452
453 453 pre {
454 454 overflow: auto;
455 455 }
456 456
457 457 .img-full {
458 458 background: #222;
459 459 border: solid 1px white;
460 460 }
461 461
462 462 .tag_item {
463 463 display: inline-block;
464 464 }
465 465
466 466 #id_models li {
467 467 list-style: none;
468 468 }
469 469
470 470 #id_q {
471 471 margin-left: 1ex;
472 472 }
473 473
474 474 ul {
475 475 padding-left: 0px;
476 476 }
477 477
478 478 .quote-header {
479 479 border-bottom: 2px solid #ddd;
480 480 margin-bottom: 1ex;
481 481 padding-bottom: .5ex;
482 482 color: #ddd;
483 483 font-size: 1.2em;
484 484 }
485 485
486 486 /* Reflink preview */
487 487 .post_preview {
488 488 border-left: 1px solid #777;
489 489 border-right: 1px solid #777;
490 490 max-width: 600px;
491 491 }
492 492
493 493 /* Code highlighter */
494 494 .hljs {
495 495 color: #fff;
496 496 background: #000;
497 497 display: inline-block;
498 498 }
499 499
500 500 .hljs, .hljs-subst, .hljs-tag .hljs-title, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title {
501 501 color: #fff;
502 502 }
503 503
504 504 #up {
505 505 position: fixed;
506 506 bottom: 5px;
507 507 right: 5px;
508 508 border: 1px solid #777;
509 509 background: #000;
510 510 padding: 4px;
511 511 }
512 512
513 513 .user-cast {
514 514 border: solid #ffffff 1px;
515 515 padding: .2ex;
516 516 background: #152154;
517 517 color: #fff;
518 518 }
519 519
520 520 .highlight {
521 521 background-color: #222;
522 522 }
523 523
524 524 .post-button-form > button:hover {
525 525 text-decoration: underline;
526 526 }
527 527
528 528 .tree_reply > .post {
529 529 margin-left: 1ex;
530 530 margin-top: 1ex;
531 531 border-left: solid 1px #777;
532 532 border-right: solid 1px #777;
533 533 }
534 534
535 535 #preview-text {
536 536 border: solid 1px white;
537 537 margin: 1ex 0 1ex 0;
538 538 padding: 1ex;
539 539 }
540 540
541 541 button {
542 542 border: 1px solid white;
543 543 margin-bottom: .5ex;
544 544 margin-top: .5ex;
545 545 }
General Comments 0
You need to be logged in to leave comments. Login now