blob: e1336e4a32ea00aa7049985ee43f3eb33ee854e1 (
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
|
html {
background-color: white;
color: black;
font-family: sans-serif;
line-height: 140%;
margin: 0px;
padding: 0px;
}
body {
padding: 0px 0px 60px 0px;
margin: 0px;
}
div#header {
height: 32px;
margin: 20px 0px 20px 60px;
text-transform: uppercase;
font-weight: bold;
font-size: 28px;
}
div#header img {
display: inline;
margin: 0px 0px 0px 0px;
}
div#main {
margin: 0px auto 0px auto;
width: 860px;
}
div#sidebar {
margin-right: 30px;
width: 160px;
float: left;
}
div#sidebar h1 {
clear: both;
float: right;
}
div#sidebar a {
clear: both;
display: block;
float: right;
margin-bottom: 10px;
text-decoration: none;
text-transform: uppercase;
}
div#sidebar img {
margin: 0px;
}
div#content {
width: 670px;
float: right;
}
div#footer {
padding-top: 30px;
clear: both;
font-size: 90%;
text-align: center;
}
p {
padding: 0px;
margin: 10px 0px 10px 0px;
}
a {
color: black;
}
h1 {
font-size: 20px;
margin: 24px 0px 16px 0px;
}
h2 {
font-size: 18px;
margin: 24px 0px 16px 0px;
}
h3 {
font-size: 16px;
}
h1, h2, h3 {
text-transform: uppercase;
}
h1 a, h2 a, h3 a {
text-decoration: none;
}
img {
border: none;
display: block;
margin: 6px auto 30px auto;
}
ul {
list-style-type: square;
padding-left: 1em;
margin-left: 1em;
}
code {
background-color: rgb(250, 250, 250);
border: 1px solid rgb(200, 200, 200);
padding-left: 4px;
padding-right: 4px;
}
pre code {
display: block;
padding: 8px;
margin-bottom: 2em;
}
p.caption {
display: none;
}
|