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