##// END OF EJS Templates
Made quote font smalled in MD theme
neko259 -
r773:1be2c577 default
parent child Browse files
Show More
@@ -1,456 +1,455 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 110 margin-bottom: .5em;
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 border-left: solid 4px #ccc;
226 225 padding: 3px;
227 226 display: inline-block;
228 227 background: #222;
229 border-right: solid 1px #ccc;
230 border-top: solid 1px #ccc;
231 border-bottom: solid 1px #ccc;
228 border-style: solid;
229 border-width: 1px 1px 1px 4px;
230 font-size: 0.9em;
232 231 }
233 232
234 233 .spoiler {
235 234 background: white;
236 235 color: white;
237 236 }
238 237
239 238 .spoiler:hover {
240 239 color: black;
241 240 }
242 241
243 242 .comment {
244 243 color: #eb2;
245 244 }
246 245
247 246 a:hover {
248 247 text-decoration: underline;
249 248 }
250 249
251 250 .last-replies {
252 251 margin-left: 3ex;
253 252 margin-right: 3ex;
254 253 }
255 254
256 255 .thread {
257 256 margin-bottom: 3ex;
258 257 margin-top: 1ex;
259 258 }
260 259
261 260 .post:target {
262 261 border: solid 2px white;
263 262 }
264 263
265 264 pre{
266 265 white-space:pre-wrap
267 266 }
268 267
269 268 li {
270 269 list-style-position: inside;
271 270 }
272 271
273 272 .fancybox-skin {
274 273 position: relative;
275 274 background-color: #fff;
276 275 color: #ddd;
277 276 text-shadow: none;
278 277 }
279 278
280 279 .fancybox-image {
281 280 border: 1px solid black;
282 281 }
283 282
284 283 .image-mode-tab {
285 284 background: #444;
286 285 color: #eee;
287 286 margin-top: 5px;
288 287 padding: 5px;
289 288 border-top: 1px solid #888;
290 289 border-bottom: 1px solid #888;
291 290 }
292 291
293 292 .image-mode-tab > label {
294 293 margin: 0 1ex;
295 294 }
296 295
297 296 .image-mode-tab > label > input {
298 297 margin-right: .5ex;
299 298 }
300 299
301 300 #posts-table {
302 301 margin-top: 5px;
303 302 margin-bottom: 5px;
304 303 }
305 304
306 305 .tag_info > h2 {
307 306 margin: 0;
308 307 }
309 308
310 309 .post-info {
311 310 color: #ddd;
312 311 margin-bottom: 1ex;
313 312 }
314 313
315 314 .moderator_info {
316 315 color: #e99d41;
317 316 float: right;
318 317 font-weight: bold;
319 318 }
320 319
321 320 .refmap {
322 321 font-size: 0.9em;
323 322 color: #ccc;
324 323 margin-top: 1em;
325 324 }
326 325
327 326 .fav {
328 327 color: yellow;
329 328 }
330 329
331 330 .not_fav {
332 331 color: #ccc;
333 332 }
334 333
335 334 .role {
336 335 text-decoration: underline;
337 336 }
338 337
339 338 .form-email {
340 339 display: none;
341 340 }
342 341
343 342 .footer {
344 343 margin: 5px;
345 344 }
346 345
347 346 .bar-value {
348 347 background: rgba(50, 55, 164, 0.45);
349 348 font-size: 0.9em;
350 349 height: 1.5em;
351 350 }
352 351
353 352 .bar-bg {
354 353 position: relative;
355 354 border-top: solid 1px #888;
356 355 border-bottom: solid 1px #888;
357 356 margin-top: 5px;
358 357 overflow: hidden;
359 358 }
360 359
361 360 .bar-text {
362 361 padding: 2px;
363 362 position: absolute;
364 363 left: 0;
365 364 top: 0;
366 365 }
367 366
368 367 .page_link {
369 368 background: #444;
370 369 border-top: solid 1px #888;
371 370 border-bottom: solid 1px #888;
372 371 padding: 5px;
373 372 color: #eee;
374 373 font-size: 2ex;
375 374 }
376 375
377 376 .skipped_replies {
378 377 margin: 5px;
379 378 }
380 379
381 380 .current_page {
382 381 border: solid 1px #afdcec;
383 382 padding: 2px;
384 383 }
385 384
386 385 .current_mode {
387 386 font-weight: bold;
388 387 }
389 388
390 389 .gallery_image {
391 390 border: solid 1px;
392 391 padding: 0.5ex;
393 392 margin: 0.5ex;
394 393 text-align: center;
395 394 }
396 395
397 396 code {
398 397 border: dashed 1px #ccc;
399 398 background: #111;
400 399 padding: 2px;
401 400 font-size: 1.2em;
402 401 display: inline-block;
403 402 }
404 403
405 404 pre {
406 405 overflow: auto;
407 406 }
408 407
409 408 .img-full {
410 409 background: #222;
411 410 border: solid 1px white;
412 411 }
413 412
414 413 .tag_item {
415 414 display: inline-block;
416 415 border: 1px dashed #666;
417 416 margin: 0.2ex;
418 417 padding: 0.1ex;
419 418 }
420 419
421 420 #id_models li {
422 421 list-style: none;
423 422 }
424 423
425 424 #id_q {
426 425 margin-left: 1ex;
427 426 }
428 427
429 428 ul {
430 429 padding-left: 0px;
431 430 }
432 431
433 432 .quote-header {
434 433 border-bottom: 2px solid #ddd;
435 434 margin-bottom: 1ex;
436 435 padding-bottom: .5ex;
437 436 color: #ddd;
438 437 font-size: 1.2em;
439 438 }
440 439
441 440 /* Reflink preview */
442 441 .post_preview {
443 442 border-left: 1px solid #777;
444 443 border-right: 1px solid #777;
445 444 }
446 445
447 446 /* Code highlighter */
448 447 .hljs {
449 448 color: #fff;
450 449 background: #000;
451 450 display: inline-block;
452 451 }
453 452
454 453 .hljs, .hljs-subst, .hljs-tag .hljs-title, .lisp .hljs-title, .clojure .hljs-built_in, .nginx .hljs-title {
455 454 color: #fff;
456 455 }
General Comments 0
You need to be logged in to leave comments. Login now