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