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