aboutsummaryrefslogtreecommitdiff
path: root/s/style/rune/style.css
blob: 01e3e88f79953e8b1ea2d6775785b13afa4b737f (plain)
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
/* * * * * * * * * * * * * * * * * * *\
*  Master Server Web Interface        *
*  A website by Darkelarious          *
*  See COPYING for additional details *
*  on re-use.                         *
\* * * * * * * * * * * * * * * * * * */

/* Theme written by Darkelarious */

/*** Global ***/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline:0;
    }
    
body { 
    text-align: center;
    height: 100%;
    color: #ccc;
    font-family: 'Verdana';
    font-size: 10pt;
    background: #000 url(/style/rune/background.jpg) repeat center top fixed;
    }

p {
    margin-bottom:12pt;
    }
    
a, a:visited {
    text-decoration: none;
    color: #fa0;
    }
    
a:hover {
    color: #ff0;
    text-decoration: none;
    }

#body {
    text-align: left; 
    width: 900px; 
    margin: 0 auto; 
    min-height: 100%; 
    background: url(/style/rune/333runic.png) no-repeat center 10px fixed;
    padding-top: 120px;
    background-size: 500px;
    }
    
#footer {
    padding: 90px 0 40px 0;
    text-align:center;
    font-size : x-small;
    clear:both
    }

#footer a {
    text-decoration: underline;
    }


/* mainboxes */
div.mainbox {
    border: 1px solid #fa0;
    margin: 21px 0 -10px 0;
    padding: 5px;
    box-shadow: 2px 2px 5px #552500;
    background: url(/style/rune/g75.png) repeat center top;
    }

div.mainbox h1, 
div.mainbox h2,
div.mainbox h3 {
    margin: -5px 0 10px 0; 
    text-decoration: none;
    font-family: Tahoma;
    font-weight: normal;
    font-size: 16pt;
    color: #fa0;
    }

div.mainbox h2 {
    margin: 5px 0 5px 5px; 
    font-size: 12pt;
    }
div.mainbox h3 {
    margin: 5px 0 5px 10px; 
    font-size: 11pt;
}

div.mainbox p,
div.mainbox ul,
div.mainbox ol {
    margin: 5px 16px 0 8px;
    padding: 0 5px 5px 25px;
    text-align:left;
    font-size: 9pt;
    }
div.mainbox ul,
div.mainbox ol {
    margin-left:20px;
    }


div.mainbox div.header {
    margin: -5px 2px 10px -5px; 
    padding:10px 0 0 10px; 
    display:block;
    width:100%;
    color: #ccc;
    border-bottom:1px solid #fa0; 
    background: url(/style/rune/g50.png) repeat center top;
    }

/* navigation / search box "fieldset.search" */

form input {
    border: 1px solid #fa0;
    background: #210;
    color: #ccc;
}

form fieldset.search,
form fieldset#advancedsearch {
    display: block; 
    margin:12px 0 12px 0;
    width: 100%; 
    text-align:center;
    height:22px;
    }

form fieldset.search input.text,
form fieldset#advancedsearch input.text {
    width: 300px;
    margin-left:20px;
    padding:1px 1px 1px 5px;
    font-style: italic;
    }
    
form fieldset.search input.submit {
    display:none;
    }

form fieldset.search a {
    padding: 1px 5px;
    border:  1px solid #fa0;
    margin: 0 6px;
    }
form fieldset.search a.sel,
form fieldset.search a:hover {
    border: 1px solid #ff0;
    color: #ff0;
    }

form div.dropdown a {
    display:block;
    width:100%;
    text-align:center;
    font-size: x-small;
}

form fieldset#advancedsearch {
    display:none;
}
form fieldset#advancedsearch input.submit {
    padding: 1px;
    margin: auto 5px;
}
    
/* TODO: advanced search function styling */

    

/* browse table tabs */
ul.maintabs {
    display: inline; 
    margin: 0;
    }
    
ul.maintabs.notfirst {
    display: block; 
    height: 20px
    }
    
ul.maintabs li {
    display: inline; 
    list-style-type: none
    }
    
ul.maintabs li a, 
ul.maintabs li b {
    float: right;
    display: block;
    height: 14px;
    padding: 1px 7px 5px 7px;
    margin: 0 0 0 10px;
    }
    
ul.maintabs li a {
    margin-left: 5px; 
    border: 1px solid #fa0;
    border-bottom: none;
    background: #210;
    }
    
ul.maintabs.notfirst li a,
ul.maintabs.notfirst li b {
    margin-top: 20px
    }
    
ul.maintabs.bottom li a,
ul.maintabs.bottom li b {
    margin-top: 10px;
    padding: 1px 7px 5px 7px
    }
    
ul.maintabs.bottom li a {
    border-bottom: 1px solid #fa0;
    border-top: none
    }
    
ul.maintabs li.left a,
ul.maintabs li.left b {
    float: left; 
    margin-left: 0; 
    margin-right: 10px
    }
    
ul.maintabs li b {
    margin-left: -2px; 
    margin-right: -7px
    }
    
ul.maintabs li.left b {
    margin-left: -7px; 
    margin-right: -2px
    }
    
ul.maintabs li.tabselected a,
ul.maintabs li a:hover {
    padding-bottom: 6px
    }
    
ul.maintabs.bottom li.tabselected a,
ul.maintabs.bottom li a:hover {
    padding-top: 2px;
    padding-bottom: 5px;
    margin-top: 9px
    }
    
ul.maintabs.browsetabs li a {
    margin-left: 5px; 
    background: url(/style/rune/g75.png) repeat center top;;
    }
    
ul.maintabs.browsetabs li.left a {
    margin-left: 0; 
    margin-right: 5px
    }


/* game/server browse tables */
div.mainbox.browse {
    padding: 0;
    }

div.mainbox.browse table {
    width: 100%;
    table-layout:fixed;
    border-collapse:collapse
    }

div.mainbox.browse table thead td {
    font-weight: bold;
    }
   
div.mainbox.browse table thead tr td {
    white-space:nowrap;
    overflow:hidden;
    text-align:center;
    border-top:0;
    border-bottom:1px solid #fa0; 
    color: #fa0; 
    padding:3px 10px 3px 5px; 
    font-weight:bold;
    background: url(/style/rune/g75.png) repeat center top;
    }
    
div.mainbox.browse table tfoot tr td {
    white-space:nowrap;
    overflow:hidden;
    text-align:center;
    border-top:1px solid #fa0; 
    color: #ccc; 
    padding:3px 10px 3px 5px; 
    }

div.mainbox.browse table tr td {
    white-space:nowrap;
    overflow:hidden;
    text-align:center;
    padding:1px 10px 1px 5px;
    font-size:10pt;
    }
    
div.mainbox.browse table tr.s td a {
    color: #ccc;
    }
    
div.mainbox.browse table tr.s td a:hover {
    color: #ff0;
    }

div.mainbox.browse table tr.odd {
    background: #210;
    }

/* specific game list table columns */
div.mainbox.browse.gamelist table tr td.tc1 {
    text-align:left;
    padding-left:20px
    }
    
div.mainbox.browse.gamelist table tr td.tc2 {
    width:100px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px 16px;
    }
    
div.mainbox.browse.gamelist table tr td.tc3 {
    width:200px;
    }
    
/* specific serverlist table columns */
div.mainbox.browse.serverlist table tr td.tc1 {
    width:10px; 
    background-size: 20px 15px; 
    background-position: 50%; 
    background-repeat: no-repeat;
    }

div.mainbox.browse.serverlist table tr td.tc2 {
    text-align:left;
    }

div.mainbox.browse.serverlist table tr td.tc3 {
    width:46px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px 16px;
    }
div.mainbox.browse.serverlist table tr td.tc3.icon a {
    display:block;
    margin:0 auto;
    height:16px;
    width:16px;
}
    
div.mainbox.browse.serverlist table tr td.tc4 {
    width:110px;text-align:left
    }
    
div.mainbox.browse.serverlist table tr td.tc5 {
    width:60px;
    text-align:center
    }
    
div.mainbox.browse.serverlist table tr td.tc6 {
    width:150px;
    text-align:left
    }


/* serverinfo details */
div.mainbox.detail {
  padding:0 0 12px 0;
  }
div.mainbox.detail div.header {
  margin:0 0 12pt 0; 
  padding: 0;
  display:inline-block;
  width:100%;
  height:48px;
  }
  
div.mainbox.detail div.header h1 {
  font-weight:normal;
  padding: 15px 15px 0 15px;
  white-space: nowrap;
  overflow:hidden;
  display:block;
  }
  
div.mainbox.detail div.header div.serverflags {
    float:right;
    overflow:hidden;
}

div.mainbox.detail div.header div.serverflags div.r,
div.mainbox.detail div.header div.serverflags div.g {
    background: #311;
    display:inline-block;
    border-left:1px solid #fa0;
}
div.mainbox.detail div.header div.serverflags div.g {
    background: #131;
}

/* server flag icons */
div.mainbox.detail div.header div.serverflags div div.direct        {background-image: url(/serverflags/direct.png);}
div.mainbox.detail div.header div.serverflags div div.manual        {background-image: url(/serverflags/manual.png);}
div.mainbox.detail div.header div.serverflags div div.authed        {background-image: url(/serverflags/authed.png);}
div.mainbox.detail div.header div.serverflags div div.noauthed      {background-image: url(/serverflags/noauthed.png);}
div.mainbox.detail div.header div.serverflags div div.noblacklist   {background-image: url(/serverflags/noblacklist.png);}
div.mainbox.detail div.header div.serverflags div div.blacklist     {background-image: url(/serverflags/blacklist.png);}
div.mainbox.detail div.header div.serverflags div div.nopasswd      {background-image: url(/serverflags/nopasswd.png);}
div.mainbox.detail div.header div.serverflags div div.passwd        {background-image: url(/serverflags/passwd.png);}
div.mainbox.detail div.header div.serverflags div div {
    width:48px;
    height:48px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 40px 40px;
    filter: brightness(0) saturate(100%) invert(73%) sepia(32%) saturate(5426%) hue-rotate(1deg) brightness(105%) contrast(104%);
}
  
div.mainbox.detail table {
  margin-bottom: 20px; 
  table-layout:fixed;
  border-collapse:collapse;
  text-align:left;
  }
div.mainbox.detail table tr th {
  font-weight:bold; 
  padding: 2px 8px; 
  margin-bottom:12pt; 
  border-bottom: 1px solid #552500;
  color: #ccc;
  }
div.mainbox.detail table tr th.wc1 {
  width:170px
  }
div.mainbox.detail table tr td {
  vertical-align:top; 
  padding:6px 5px 4px 15px;
  }
div.mainbox.detail table tr td img.flag {
  margin:-4px 2px -4px 0; 
  height:20px; 
  width:30px;
  }
div.mainbox.detail table tr td input,
div.mainbox.detail table tr td textarea {
  color: #ccc;
  width:99%;
  padding: 3px 1px 2px 5px;
  border: 1px solid #0af;
  font-family:"Lucida Console";
  font-size: 8pt;
  background: #210;
  }
div.mainbox.detail table.serverinfo,
div.mainbox.detail table.gameinfo {
  width:63%;
  }
div.mainbox.detail table {
  width:96%;
  }
div.mainbox.detail div.container {
  float:right; 
  margin: 0 30px 8px 0;
  }
div.mainbox.detail div.container div.thumbnail {
  border:1px solid #552500; 
  display:block;
  box-shadow: 1px 1px 2px #552500;
  background: #210;
  }
div.mainbox.detail div.container div.thumbnail img {
  height:256px; 
  width:256px;
  border:1px solid #ccc;
  display:block;
  margin:10px 10px 2px 10px
  }
div.mainbox.detail div.container div.thumbnail span {
  text-align: right; 
  font-weight: normal; 
  padding:0 15px 4px 5px;
  display:block; 
  font-size:x-small
  }
div.mainbox.detail div.container div.updatenote {
    padding: 2px 0 7px 0;
    display:block;
    font-style: italic; 
    font-size: x-small; 
    text-align: right;
}

div.mainbox.detail div.container table.mapinfo {
  width: 280px;
  margin-bottom:0;
  }
div.mainbox.detail div.container table.mapinfo tr td.wc1{
  width: 80px;
  }
div.mainbox.detail table.players {text-align:left;}
div.mainbox.detail table.players tr.odd {
  background: #210;
  }
div.mainbox.detail table.players tr td {
  padding:1px 5px 0px 15px; 
  overflow:hidden; 
  white-space: nowrap;
  }
div.mainbox.detail table.players tr th.frags {width:50px}
div.mainbox.detail table.players tr th.mesh  {width:140px}
div.mainbox.detail table.players tr th.skin  {width:140px}
div.mainbox.detail table.players tr th.ping  {width:50px}

div.mainbox.detail table.shareopts tr th a {
    color: #ccc;
}
div.mainbox.detail table.shareopts tr td {
    border-right:1px solid #552500;
    border-bottom:1px solid #552500;
    font-family:"Lucida Console";
    font-size: 8pt;
    text-align:left;
    background: #210;
}

/* warning box */
div.mainbox.warning {
    color:#ccc; 
    background-color: #411; 
    border: 1px solid #c00; 
}
div.mainbox.warning div.header {
    border-bottom:1px solid #c00; 
    background: #200;
    color: #ccc;
}

div.mainbox.warning div.header h1{
    color: #ccc;
}

div.mainbox div.description {
    display: block;
    width: 500px;
    margin: 10px auto
    }

span.hilit {
    font-style: italic;
    padding: 1px;
    background: url(/style/rune/g50.png) repeat center top;
}

.r {color:#f55}
.o {color:#c80}
.y {color:#ff3}
.g {color:#3f3}
.b {color:#33f}