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