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