This repository was archived by the owner on May 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
581 lines (525 loc) · 8.81 KB
/
style.css
File metadata and controls
581 lines (525 loc) · 8.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
/* Normal, standard links. */
a:link
{
color: #000;
text-decoration: underline;
}
a:visited, a:hover
{
color: #323232;
text-decoration: underline;
}
/* Navigation links - for the link tree. */
.nav, .nav:link, .nav:visited
{
color: #000;
text-decoration: none;
}
a.nav:hover
{
font-weight: bold;
color: #cc3333;
text-decoration: underline;
}
/* Tables should show empty cells. */
table
{
empty-cells: show;
}
/* By default (td, body..) use Tahoma in #000. */
body, td, th
{
color: #000;
font-size: small;
font-family: tahoma, sans-serif;
}
/* The main body of the entire forum. */
body
{
background-color: #fff;
margin: 0;
padding: 0;
}
/* Input boxes - just a bit smaller than normal so they align well. */
input, textarea, button
{
font-size: 9pt;
color: #000;
font-family: tahoma, sans-serif;
}
/* All input elements that are checkboxes or radio buttons. */
input.input_radio, input.input_check
{
}
/* Selects are a bit smaller, because it makes them look even better 8). */
select
{
font-size: 8pt;
font-weight: normal;
color: #000;
font-family: tahoma, sans-serif;
}
/* Define strong as bold, and em as italics */
strong
{
font-weight: bold;
}
em
{
font-style: italic;
}
/* Standard horizontal rule.. ([hr], etc.) */
hr, .hrcolor
{
height: 1px;
border: 0;
color: #666;
background-color: #666;
}
/* A quote, perhaps from another post. */
blockquote
{
color: #000;
background-color: #c3b8d0;
display: block;
border: 1px solid #000;
margin: 1px;
padding: 1px;
font-size: x-small;
line-height: 1.4em;
}
/* A code block - maybe even PHP ;). */
code
{
color: #000;
background-color: #cccccc;
font-family: "courier new", "times new roman", monospace;
font-size: x-small;
line-height: 1.3em;
/* Put a nice border around it. */
border: 1px solid #000;
margin: 1px auto 1px auto;
padding: 1px;
width: 99%;
/* Don't wrap its contents, and show scrollbars. */
white-space: nowrap;
overflow: auto;
display: block;
/* Stop after about 24 lines, and just show a scrollbar. */
max-height: 24em;
}
/* The "Quote:" and "Code:" header parts... */
.quoteheader, .codeheader
{
color: #000;
text-decoration: none;
font-style: normal;
font-weight: bold;
font-size: x-small;
line-height: 1.2em;
}
/* For links to change the code stuff... */
.codeoperation
{
font-weight: normal;
}
/* Generally, those [?] icons. This makes your cursor a help icon. */
.help
{
cursor: help;
}
/* /me uses this a lot. (emote, try typing /me in a post.) */
.meaction
{
color: red;
}
/* The main post box - this makes it as wide as possible. */
.editor
{
width: 96%;
}
/* Highlighted text - such as search results. */
.highlight
{
background-color: #ff0;
font-weight: bold;
color: #000;
}
/* A more discreet highlight color, for selected membergroups etc. */
.highlight2
{
background-color: #b3f4b0;
color: #000;
}
/* Alternating backgrounds for posts, and several other sections of the forum. */
.windowbg
{
color: #000;
background-color: #e1e1e1;
}
.windowbg2
{
color: #000;
background-color: #f0f0f0;
}
/* Color for background of posts requiring approval */
.approvebg
{
color: #000;
background-color: #f6e0d4;
}
/* Color for background of *topics* requiring approval */
.approvetbg
{
color: #000;
background-color: #e4a17c;
}
/* These are used primarily for titles, but also for headers (the row that says what everything in the table is.) */
.titlebg, tr.titlebg th, tr.titlebg td, .titlebg a:link, .titlebg a:visited, .titlebg2, tr.titlebg2 th, tr.titlebg2 td, .titlebg2 a:link, .titlebg2 a:visited
{
color: #fff;
font-style: normal;
background-color: #6b8eae;
}
.titlebg a:hover, .titlebg2 a:hover
{
color: #dfdfdf;
}
/* This is used for categories, page indexes, and several other areas in the forum. */
.catbg, .catbg3
{
background-image: url(images/catbg.jpg);
}
/* This is used for a category that has new posts in it... to make it light up. */
.catbg2
{
background-image: url(images/catbg2.jpg);
}
.catbg, .catbg2, .catbg3
{
font-weight: bold;
background-color: silver;
color: #000;
}
/* This is used for tables that have a grid/border background color (such as the topic listing.) */
.bordercolor
{
background-color: #828181;
}
/* This is used on tables that should just have a border around them. */
.tborder
{
border: 1px solid #828181;
background-color: #fff;
padding: 2px;
}
.floatright
{
float: right;
}
.floatleft
{
float: left;
}
/* Default font sizes: small (8pt), normal (10pt), and large (14pt). */
.smalltext
{
font-size: x-small;
font-family: tahoma, sans-serif;
}
.normaltext
{
font-size: small;
}
.largetext
{
font-size: large;
}
.centertext
{
margin: 0 auto;
text-align: center;
}
.righttext
{
margin-left: auto;
margin-right: 0;
text-align: right;
}
.lefttext
{
margin-left: 0;
margin-right: auto;
text-align: left;
}
/* This is the white header area where the title, menu bars, and header boxes are. */
#headerarea
{
background-color: #fff;
border-bottom: 1px solid gray;
}
/* This is the main area of the forum, the part that's gray. */
#bodyarea
{
background-color: #d4d4d4;
}
/* And this is the bottom, where the copyright is, etc. */
#footerarea
{
color: #000;
background-color: #fff;
border-top: 1px solid gray;
}
/* This is for the special header boxes on the top (user info, key stats, news box.) */
.headertitles
{
background-color: #6b8eae;
border: 1px solid #6b8eae;
height: 12px;
}
.headerbodies
{
border: 1px solid #7a7777;
background-color: #efefef;
background-repeat: repeat-x;
background-position: bottom;
}
/* Posts and personal messages displayed throughout the forum. */
.post, .personalmessage
{
width: 100%;
overflow: auto;
line-height: 1.3em;
}
/* a quick reset list class. */
ul.reset, ul.reset li
{
padding: 0;
margin: 0;
list-style: none;
}
/* All the signatures used in the forum. If your forum users use Mozilla, Opera, or Safari, you might add max-height here ;). */
.signature
{
clear: right;
padding: 1em 0 3px 0;
border-top: 1px solid #666;
width: 100%;
line-height: 1.3em;
font-size: 0.85em;
}
.custom_fields_above_signature
{
clear: right;
padding: 1em 0 3px 0;
border-top: 1px solid #666;
width: 100%;
line-height: 1.3em;
font-size: 0.85em;
}
/* Sometimes there will be an error when you post */
.error
{
color: red;
}
/* Messages that somehow need to attract the attention. */
.alert
{
color: red;
}
/* No image should have a border when linked */
a img{
border: 0;
}
/* Calendar colors for birthdays, events and holidays */
.birthday
{
color: #920ac4;
}
.event
{
color: #078907;
}
.holiday
{
color: #000080;
}
/* Colors for warnings */
.warn_mute
{
color: red;
}
.warn_moderate
{
color: #ffa500;
}
.warn_watch
{
color: green;
}
/* The AJAX notifier */
#ajax_in_progress
{
background: #32cd32;
color: #fff;
text-align: center;
font-weight: bold;
font-size: 18pt;
padding: 3px;
width: 100%;
position: fixed;
top: 0;
left: 0;
}
/* Styling for BBC tags */
.bbc_color a
{
color: inherit;
}
.bbc_img
{
border: 0;
}
.bbc_list
{
margin-top: 0;
margin-bottom: 0;
}
.bbc_size
{
line-height: 1.3em;
}
.bbc_table
{
font: inherit;
color: inherit;
}
.bbc_table td
{
font: inherit;
color: inherit;
vertical-align: top;
}
.bbc_u
{
text-decoration: underline;
}
/* styling the admin section */
ol.search_results
{
margin-top: 0;
padding-top: 0;
}
ol.search_results li
{
padding-top: 5px;
}
.button_strip_submit
{
background: transparent;
color: #fff;
text-transform: uppercase;
vertical-align: top;
text-decoration: none;
font-size: 9px;
font-family: tahoma, sans-serif;
border: 0;
}
.button_strip_submit:hover
{
color: #e0e0ff;
}
.openid_login
{
background: white url(images/openid.gif) no-repeat;
padding-left: 18px;
}
/* new features settings screen */
.features
{
clear: both;
border-bottom: 1px solid #e0e0e0;
}
.features_image
{
float: left;
margin: 1em 2em 0.5em 1em;
}
.features_switch
{
margin: 0.2em 1em 1em 1em;
float: right;
}
.features h4
{
padding: 2em 0 0.5em 0.5em;
margin: 0;
font-size: 1.1em;
}
.features p
{
padding: 0 1em 1em 1em;
margin: 0;
}
a.moderation_link, a.moderation_link:visited
{
color: red;
font-weight: bold;
}
/* These are for the auto suggest floating div type thing. */
.auto_suggest_div
{
border: 1px solid #000;
position: absolute;
visibility: hidden;
}
/* An auto suggest item */
.auto_suggest_item
{
background-color: #ddd;
}
/* hovered auto suggest item */
.auto_suggest_item_hover
{
background-color: #888;
cursor: pointer;
color: #eee;
}
/* Error messages */
.errorbox
{
padding: 1em;
border: 1px solid #cc3344;
color: #000;
background-color: #ffe4e9;
margin-bottom: 1em;
}
.errorbox h3
{
padding: 0;
margin: 0;
font-size: 1.1em;
text-decoration: underline;
}
.errorbox p
{
margin: 1em 0 0 0;
}
.errorbox p.alert
{
padding: 0;
margin: 0;
float: left;
width: 1em;
font-size: 1.5em;
}
.lastpost img
{
float: right;
border: 0;
}
/* Correction for IE6 and 7. */
.move_topic dl.settings
{
height: 50px;
}