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