##// END OF EJS Templates
Removed italic from comment, I don't like it
neko259 -
r613:af3c59ce default
parent child Browse files
Show More
@@ -1,402 +1,401 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 font-style: italic;
227 226 }
228 227
229 228 a:hover {
230 229 text-decoration: underline;
231 230 }
232 231
233 232 .last-replies {
234 233 margin-left: 3ex;
235 234 margin-right: 3ex;
236 235 }
237 236
238 237 .thread {
239 238 margin-bottom: 3ex;
240 239 }
241 240
242 241 .post:target {
243 242 border: solid 2px white;
244 243 }
245 244
246 245 pre{
247 246 white-space:pre-wrap
248 247 }
249 248
250 249 li {
251 250 list-style-position: inside;
252 251 }
253 252
254 253 .fancybox-skin {
255 254 position: relative;
256 255 background-color: #fff;
257 256 color: #ddd;
258 257 text-shadow: none;
259 258 }
260 259
261 260 .fancybox-image {
262 261 border: 1px solid black;
263 262 }
264 263
265 264 .image-mode-tab {
266 265 background: #444;
267 266 color: #eee;
268 267 display: table;
269 268 margin: 5px;
270 269 padding: 5px;
271 270 border: 1px solid #888;
272 271 }
273 272
274 273 .image-mode-tab > label {
275 274 margin: 0 1ex;
276 275 }
277 276
278 277 .image-mode-tab > label > input {
279 278 margin-right: .5ex;
280 279 }
281 280
282 281 #posts-table {
283 282 margin: 5px;
284 283 }
285 284
286 285 .tag_info {
287 286 display: table;
288 287 }
289 288
290 289 .tag_info > h2 {
291 290 margin: 0;
292 291 }
293 292
294 293 .post-info {
295 294 color: #ddd;
296 295 }
297 296
298 297 .moderator_info {
299 298 color: #e99d41;
300 299 float: right;
301 300 font-weight: bold;
302 301 }
303 302
304 303 .refmap {
305 304 font-size: 0.9em;
306 305 color: #ccc;
307 306 margin-top: 1em;
308 307 }
309 308
310 309 .fav {
311 310 color: yellow;
312 311 }
313 312
314 313 .not_fav {
315 314 color: #ccc;
316 315 }
317 316
318 317 .role {
319 318 text-decoration: underline;
320 319 }
321 320
322 321 .form-email {
323 322 display: none;
324 323 }
325 324
326 325 .footer {
327 326 margin: 5px;
328 327 }
329 328
330 329 .bar-value {
331 330 background: rgba(50, 55, 164, 0.45);
332 331 font-size: 0.9em;
333 332 height: 1.5em;
334 333 }
335 334
336 335 .bar-bg {
337 336 position: relative;
338 337 border: solid 1px #888;
339 338 margin: 5px;
340 339 overflow: hidden;
341 340 }
342 341
343 342 .bar-text {
344 343 padding: 2px;
345 344 position: absolute;
346 345 left: 0;
347 346 top: 0;
348 347 }
349 348
350 349 .page_link {
351 350 display: table;
352 351 background: #444;
353 352 margin: 5px;
354 353 border: solid 1px #888;
355 354 padding: 5px;
356 355 font-weight: bolder;
357 356 color: #eee;
358 357 }
359 358
360 359 .skipped_replies {
361 360 margin: 5px;
362 361 }
363 362
364 363 .current_page {
365 364 border: solid 1px #afdcec;
366 365 padding: 2px;
367 366 }
368 367
369 368 .current_mode {
370 369 font-weight: bold;
371 370 }
372 371
373 372 .gallery_image {
374 373 border: solid 1px;
375 374 padding: 0.5ex;
376 375 margin: 0.5ex;
377 376 text-align: center;
378 377 }
379 378
380 379 code {
381 380 border: dashed 1px #ccc;
382 381 background: #111;
383 382 padding: 2px;
384 383 font-size: 1.2em;
385 384 display: inline-block;
386 385 }
387 386
388 387 pre {
389 388 overflow: auto;
390 389 }
391 390
392 391 .img-full {
393 392 background: #222;
394 393 border: solid 1px white;
395 394 }
396 395
397 396 .tag_item {
398 397 display: inline-block;
399 398 border: 1px dashed #666;
400 399 margin: 0.2ex;
401 400 padding: 0.1ex;
402 401 }
General Comments 0
You need to be logged in to leave comments. Login now