blob: 82ffefcba5ed26dd6a40c2b51be3703ff2a0eb7a (
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
|
/*
* Author: Stefan Ritter <xeno@thehappy.de>
*/
body {
background: #444444;
font-family: Monospace;
font-size: 9px;
color: #CCCCCC;
margin: auto;
margin-top: 5px;
margin-bottom: 5px;
width: 600px;
border: 1px solid #000000;
}
img {
border: 0px;
}
a {
color: #999999;
}
/* HEADER */
div.header {
height: 25px;
width: 600px;
margin: auto;
text-align: center;
background: #222222;
border-bottom: 1px solid #000000;
}
div.header_title {
letter-spacing: 2px;
}
/* RSS and ATOM */
div.rss {
position: absolute;
top: 5px;
}
a.rss_link {
text-decoration: none;
}
div.atom {
position: relative;
top: -27px;
left: 18px;
}
a.atom_link {
text-decoration: none;
}
div.pages {
position: absolute;
top: 33px;
width: 600px;
height: 14px;
margin: auto;
background: #222222;
border-bottom: 1px solid #000000;
}
div.pages_title {
display: none;
}
ul.pages_list {
text-align: center;
list-style-type: none;
margin-top: 1px;
}
a.pages_list_entry {
text-decoration: none;
}
|