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