blob: 133bdd381d2faf44b1fb4b96a9b793f4d912d6f4 (
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: Pat Heard (fullahead.org)
DATE: 2006.09.12
PURPOSE: Styles the page for print. Techniques adopted from
http://www.alistapart.com/articles/goingtoprint/
**************************************************************/
body {
font: 400 12pt verdana, arial, sans-serif;
color: #000;
background: #FFF;
}
h1 {
margin-top: 30px;
font-size: 18pt;
border-bottom: 1px solid #999;
}
h2 {
font-size: 16pt;
}
h3 {
font-size: 14pt;
}
h4, h5, h6 {
font-size: 12pt;
}
acronym {
border: 0;
}
a {
color: #00F;
}
/* Prints the URL after a link in CSS2 supporting browsers */
a:link:after,
a:visited:after {
content: " (" attr(href) ") ";
font-size: 90%;
}
/* Don't display these elements since they're not useful on paper */
#header,
#menu,
.footer {
display: none;
}
#content {
width: auto;
margin: 0 8%;
padding: 0;
}
|