blob: b7b83cac35feac4af1c43672218d7e60539e6495 (
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
|
/*
:Author: Jay Kint
:Contact: bilbo@hobbit-hole.org
:Date: $Date$
:Revision: $Revision$
:Copyright: This stylesheet has been placed in the public domain.
Cascading sheet to mimic that of "Practical Common Lisp", a clean and
readable stylesheet.
*/
/* @import url(html4css.css) */
div.document {
margin: 1in 1in;
font-size: 12pt;
}
.title {
text-align: center;
font-size: 24pt;
}
h1 {
font-size: 18pt;
}
h2 {
font-size: 14pt;
}
div.footer {
font-size: 8pt;
}
table.footnote {
font-size: 10pt;
line-height: 1.5;
margin: 0px 0px 13px 0px;
}
td.label {
font-size: 8pt;
}
p { line-height: 1.5; }
.literal {
font-size: 9pt;
}
td p {
margin: 0 0 13px 0;
}
td p.last {
margin: 0 0 0 0;
}
blockquote { line-height: 1.5; font-size: 90%; }
h1, h2, h3, h4, h5, h6 { font-family: Helvetica; }
li { padding-top: 6pt; }
|