blob: a7240beb42f791a0b0f14234096de8677f304dbd (
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
|
body, html {
font-family: "Trebuchet Sans MS", "Bitstream Vera Sans", sans-serif;
font-size: 10pt;
color: black;
background-color: #888;
}
#content {
float: left;
clear: left;
}
#footer {
clear: left;
color: #4d4d4d;
background-color: transparent;
border-top: .1em dashed #222;
padding-top: .3em;
font-size: .8em;
}
#footer a {
color: #4b4b4b
;
background-color: transparent;
}
#navigation {
float: right;
list-style: none;
display: inline;
}
#navigation li {
display: inline;
}
:link, :visited {
color: black;
background-color: transparent;
font-weight: bold;
text-decoration: underline;
}
h1, :link:hover, :visited:hover {
color: maroon;
background-color: transparent;
}
h1 {
float: left;
font-size: 1.75em;
}
h2 {
color: #440000;
background-color: transparent;
font-size: 1.25em;
}
img {
border: 0;
}
.right {
float: right;
}
.shell {
font-family: "smoothansi", "Bitstream Vera Sans Mono", "Terminal", monospace;
}
.angryzakk {
color: black;
background-color: #aaa;
font-style: italic;
font-size: 1.2em;
font-weight: bold;
}
.current {
font-weight: bold;
}
|