blob: 38e18aa556c5058bc7972dbe626fbc211104cf99 (
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
|
body {font-size: medium;
}
h1, h2 {font-weight: normal;
color: #cc6600;
border-bottom: thin dotted #888888;
}
h1 {
font-size: 170%;
}
h2 {
font-size: 130%;
}
table {
margin-left: 10px;
margin-right: 10px;
border: thin dotted gray;
border-collapse: collapse;
}
th, td {
border: thin dotted gray;
padding: 4px;
}
th {
background-color: #cc6600;
}
.cellcolor {
background-color: #fcba7a;
}
.opt {
background-color: silver;
}
#syntax {
font: "Courier New";
font-size: large;
}
.center {
text-align: center;
}
.right {
text-align: right;
}
#ask {
text-align: right;
}
|