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