blob: 1189a934673b6fb04c16deead54e32e81485c8d1 (
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
|
#root {
font-size: 20px;
font-family: Garamond, Georgia, sans-serif;
}
p.h1 {
font-size: 40px;
}
p.h2 {
font-size: 30px;
}
p.h3{font-size: 23px; }
p {
line-height: 1.5;
margin: 0 0 20px;
}
a:active { color: tomato; }
a:focus { border: 1px dotted tomato; }
pre {
font-family: Courier, monospace;
font-size: 10%;
}
blockquote {
font-style: italic;
}
blockquote:before {
content: "\201C";
display: inline-block;
padding-right: 8px;
}
/*
* Begin custom styles.
*/
li.external a {
color: red;
}
|