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