-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstyle.css
65 lines (54 loc) · 2 KB
/
style.css
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
/* pending changes:
D color headings?
D move logo to upper left-hand corner?
- move logo back to background? otherwise darken?
*/
.explanation { background: #f0f0f0; padding: 1ex; }
/* a lot of the left and right margins are based on the golden ratio (to the
line height 1em) */
body {
background-attachment: fixed;
background-image: URL(kjlogobgsmall.png);
background-position: top left;
background-repeat: no-repeat;
margin-left: 7.48em; margin-right: 7.48em;
text-align: justify;
font-family: "URW Palladio L", Palatino, serif;
line-height: 125%;
}
/* override the normal margin widths of these elements so they don't look funny
with the paragraph indents */
ul, ol, menu, dir { -moz-padding-start: 3.24em; }
blockquote { margin: 1em 3.24em; }
pre {
background-color: #f0f0f0;
border: 1px solid #e3e3e3;
padding: 0.5em;
}
p {
/* hanging indent for paragraphs */
/* text-indent: -1.62em; margin-left: 1.62em; */
}
p, ul, ol, menu, dir {
margin-top: 0.5em; margin-bottom: 0.5em;
}
/* pretty headers following the design of
http://www.rotten.com/library/conspiracy/al-qaeda-and-the-assassins/missing-link/
*/
h1, h2, h3, h4, h5, h6 {
/* I like Palatino better anyway: font-family: "Arial Narrow", helvetica, sans-serif; */
font-weight: normal;
font-variant: small-caps;
color: #a4a;
border-bottom: 1px solid #e3e3e3;
/* this contrasts badly with the background logo: background-color: #fafafa; */
text-align: right;
/* stick out on the right, but we can't use em --- different headers have
* different font sizes, so they wouldn't line up */
margin-right: -30px;
margin-bottom: 0.25em; margin-top: 0.25em;
}
h1 { letter-spacing: 6px; padding-bottom: 6px; font-size: 22px; }
h2 { letter-spacing: 6px; padding-bottom: 6px; font-size: 18px; }
h3 { letter-spacing: 4px; padding-bottom: 4px; font-size: 16px; }
h4 { letter-spacing: 3px; padding-bottom: 3px; font-size: 14px; }