##// END OF EJS Templates
Cleaner box shadow for .post in Snow White theme.
Tenno Seremel -
r1924:8f0c554a tenno-seremel/cle...
parent child Browse files
Show More
@@ -1,433 +1,433 b''
1 1 * {
2 2 font-size: inherit;
3 3 margin: 0;
4 4 padding: 0;
5 5 }
6 6 html {
7 7 background: #fff;
8 8 color: #000;
9 9 font: medium sans-serif;
10 10 }
11 11 a {
12 12 color: inherit;
13 13 text-decoration: underline;
14 14 }
15 15 li {
16 16 list-style-position: inside;
17 17 }
18 18
19 19 #admin_panel {
20 20 background: #182F6F;
21 21 color: #fff;
22 22 padding: .5ex 1ex .5ex 1ex;
23 23 }
24 24
25 25 .navigation_panel {
26 26 background: #182F6F;
27 27 color: #B4CFEC;
28 28 margin-bottom: 1em;
29 29 padding: .5ex 1ex 1ex 1ex;
30 30 }
31 31 .navigation_panel::after {
32 32 clear: both;
33 33 content: ".";
34 34 display: block;
35 35 height: 0;
36 36 line-height: 0;
37 37 visibility: hidden;
38 38 }
39 39
40 40 .navigation_panel a:link, .navigation_panel a:visited, .navigation_panel a:hover {
41 41 text-decoration: none;
42 42 }
43 43
44 44 .navigation_panel .link {
45 45 border-right: 1px solid #fff;
46 46 color: #fff;
47 47 font-weight: bold;
48 48 margin-right: 1ex;
49 49 padding-right: 1ex;
50 50 }
51 51 .navigation_panel .right-link {
52 52 border-left: 1px solid #fff;
53 53 border-right: none;
54 54 float: right;
55 55 margin-left: 1ex;
56 56 margin-right: 0;
57 57 padding-left: 1ex;
58 58 padding-right: 0;
59 59 }
60 60
61 61 .navigation_panel .tag {
62 62 color: #fff;
63 63 }
64 64
65 65 .input_field {
66 66
67 67 }
68 68
69 69 .input_field_name {
70 70
71 71 }
72 72
73 73 .input_field_error {
74 74 color: #FF0000;
75 75 }
76 76
77 77
78 78 .title {
79 79 color: #182F6F;
80 80 font-weight: bold;
81 81 }
82 82
83 83 .post-form-w {
84 84 background: #182F6F;
85 85 border-radius: 1ex;
86 86 color: #fff;
87 87 margin: 1em 1ex;
88 88 padding: 1ex;
89 89 }
90 90
91 91 .form-row {
92 92 display: table;
93 93 width: 100%;
94 94 }
95 95 .form-label, .form-input {
96 96 display: table-cell;
97 97 vertical-align: top;
98 98 }
99 99 .form-label {
100 100 padding: .25em 1ex .25em 0;
101 101 width: 14ex;
102 102 }
103 103 .form-input {
104 104 padding: .25em 0;
105 105 }
106 106 .form-input > * {
107 107 background: #fff;
108 108 color: #000;
109 109 border: none;
110 110 padding: 0;
111 111 resize: vertical;
112 112 }
113 113
114 114 .form-input > :not(.file_wrap) {
115 115 width: 100%;
116 116 }
117 117
118 118 .form-submit {
119 119 border-bottom: 1px solid #666;
120 120 margin-bottom: .5em;
121 121 padding-bottom: .5em;
122 122 }
123 123 .form-title {
124 124 font-weight: bold;
125 125 margin-bottom: .5em;
126 126 }
127 127 .post-form .settings_item {
128 128 margin: .5em 0;
129 129 }
130 130 .form-submit input {
131 131 margin-top: .5em;
132 132 padding: .2em 1ex;
133 133 }
134 134 .form-label {
135 135 text-align: left;
136 136 }
137 137
138 138 .block {
139 139 display: inline-block;
140 140 vertical-align: top;
141 141 }
142 142
143 143 .post_id {
144 144 color: #a00;
145 145 }
146 146
147 147 .post {
148 148 clear: left;
149 149 margin: 0 1ex 1em 1ex;
150 150 overflow-x: auto;
151 151 word-wrap: break-word;
152 152 background: #FFF;
153 153 padding: 1ex;
154 154 border: 1px solid #666;
155 box-shadow: 1px 1px 2px 1px #666;
155 box-shadow: 2px 2px 0 0 #ccc;
156 156 }
157 157
158 158 #posts > .post:last-child {
159 159 border-bottom: none;
160 160 padding-bottom: 0;
161 161 }
162 162
163 163 .metadata {
164 164 background: #C0E4E8;
165 165 border: 1px solid #7F9699;
166 166 border-radius: .4ex;
167 167 display: table;
168 168 margin-top: .5em;
169 169 padding: .4em;
170 170 }
171 171
172 172 .post ul, .post ol {
173 173 margin: .5em 0 .5em 3ex;
174 174 }
175 175 .post li {
176 176 margin: .2em 0;
177 177 }
178 178 .post p {
179 179 margin: .5em 0;
180 180 }
181 181 .post blockquote {
182 182 border-left: 3px solid #182F6F;
183 183 margin: .5em 0 .5em 3ex;
184 184 padding-left: 1ex;
185 185 }
186 186 .post blockquote > blockquote {
187 187 padding-top: .1em;
188 188 }
189 189
190 190 .post > .image {
191 191 float: left;
192 192 margin-right: 1ex;
193 193 }
194 194 .post > .metadata {
195 195 clear: left;
196 196 }
197 197
198 198 .post > .message .get {
199 199 color: #182F6F; font-weight: bold;
200 200 }
201 201
202 202 .dead_post > .metadata {
203 203 background: #eee;
204 204 }
205 205
206 206 .quote, .multiquote {
207 207 color: #182F6F;
208 208 }
209 209
210 210 .spoiler {
211 211 background: black;
212 212 color: black;
213 213 }
214 214
215 215 .spoiler:hover {
216 216 background: #ffffff;
217 217 }
218 218
219 219 .comment {
220 220 color: #557055;
221 221 }
222 222
223 223 .last-replies {
224 224 margin-left: 6ex;
225 225 }
226 226
227 227 .thread > .post > .message > .post-info {
228 228 border-bottom: 1px solid #ccc;
229 229 padding-bottom: .5em;
230 230 }
231 231
232 232 :target .post_id {
233 233 background: #182F6F;
234 234 color: #FFF;
235 235 text-decoration: none;
236 236 }
237 237
238 238 .image-mode-tab {
239 239 background: #182F6F;
240 240 color: #FFF;
241 241 display: table;
242 242 margin: 1em auto 1em 0;
243 243 padding: .2em .5ex;
244 244 }
245 245
246 246 .image-mode-tab > label {
247 247 margin: 0 1ex;
248 248 }
249 249
250 250 .image-mode-tab > label > input {
251 251 margin-right: .5ex;
252 252 }
253 253
254 254 .tag_info, .page_link {
255 255 margin: 1em 0;
256 256 text-align: center;
257 257 }
258 258
259 259 .form-errors {
260 260 margin-left: 1ex;
261 261 }
262 262
263 263 .moderator_info {
264 264 font-weight: bold;
265 265 float: right;
266 266 }
267 267
268 268 .refmap {
269 269 border: 1px dashed #aaa;
270 270 padding: 0.5em;
271 271 display: table;
272 272 }
273 273
274 274 .fav {
275 275 color: blue;
276 276 }
277 277
278 278 .not_fav {
279 279 color: #ccc;
280 280 }
281 281
282 282 .form-email {
283 283 display: none;
284 284 }
285 285
286 286 .bar-value {
287 287 background: #E3E7F2;
288 288 padding: .1em 1ex;
289 289 moz-box-sizing: border-box;
290 290 box-sizing: border-box;
291 291 height: 1.5em;
292 292 }
293 293
294 294 .bar-bg {
295 295 background: #EA4649;
296 296 border: 1px solid #666;
297 297 margin: 0 1ex 1em 1ex;
298 298 position: relative;
299 299 overflow: hidden;
300 300 }
301 301
302 302 .bar-text {
303 303 padding: 2px;
304 304 position: absolute;
305 305 left: 0;
306 306 top: 0;
307 307 }
308 308
309 309 .skipped_replies {
310 310 margin: 1ex;
311 311 }
312 312
313 313 #mark-panel {
314 314 background: #eee;
315 315 border-bottom: 1px solid #182F6F;
316 316 }
317 317
318 318 .mark_btn {
319 319 display: inline-block;
320 320 padding: .2em 1ex;
321 321 border-left: 1px solid #182F6F;
322 322 }
323 323
324 324 .mark_btn:first-child {
325 325 border-left: none;
326 326 }
327 327
328 328 .mark_btn:last-child {
329 329 border-right: 1px solid #182F6F;
330 330 }
331 331
332 332 .current_page {
333 333 border-bottom: 1px solid #FFF;
334 334 padding: 0px 0.5ex;
335 335 }
336 336
337 337 .image-mode-tab a {
338 338 text-decoration: none;
339 339 }
340 340 .image-mode-tab .current_mode::before {
341 341 content: "βœ“ ";
342 342 padding: 0 0 0 .5ex;
343 343 color: #182F6F;
344 344 background: #FFF;
345 345 }
346 346 .image-mode-tab .current_mode {
347 347 padding: 0 .5ex 0 0;
348 348 color: #182F6F;
349 349 background: #FFF;
350 350 }
351 351
352 352 .gallery_image_metadata {
353 353 margin-bottom: 1em;
354 354 }
355 355
356 356 .gallery_image {
357 357 padding: 4px;
358 358 margin: .5em 0 0 1ex;
359 359 text-align: center;
360 360 vertical-align: top;
361 361 }
362 362
363 363 .swappable-form-full > form {
364 364 display: table;
365 365 width: 100%;
366 366 }
367 367
368 368 #id_models li {
369 369 list-style: none;
370 370 }
371 371
372 372 #id_q {
373 373 margin-left: 1ex;
374 374 }
375 375
376 376 .br {
377 377 margin-top: 0.5em;
378 378 margin-bottom: 0.5em;
379 379 }
380 380
381 381 .message, .refmap {
382 382 margin-top: .5em;
383 383 }
384 384
385 385 .user-cast {
386 386 padding: 0.2em .5ex;
387 387 background: #008;
388 388 color: #FFF;
389 389 display: inline-block;
390 390 text-decoration: none;
391 391 }
392 392
393 393 .highlight {
394 394 background-color: #D4F0F9;
395 395 }
396 396
397 397 .dead_post {
398 398 border-right: 1ex solid #666;
399 399 }
400 400
401 401 #preview-text {
402 402 border: solid 1px white;
403 403 margin: 1ex 0 1ex 0;
404 404 padding: 1ex;
405 405 }
406 406
407 407 .image-metadata {
408 408 font-style: italic;
409 409 font-size: 0.9em;
410 410 }
411 411
412 412 audio {
413 413 margin-top: 1em;
414 414 }
415 415
416 416 .post-blink {
417 417 background-color: #ccc;
418 418 }
419 419
420 420 #quote-button {
421 421 background-color: #99a3e2;
422 422 border: solid #000000 1px;
423 423 padding: 2px;
424 424 }
425 425
426 426 #quote-button:hover {
427 427 background-color: #b9c4e2;
428 428 }
429 429
430 430 #preview-text {
431 431 background: #FFF;
432 432 color: #000;
433 433 }
General Comments 0
You need to be logged in to leave comments. Login now