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