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