]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - theme/default/style/print.css
use $_GET, not $args
[quix0rs-gnu-social.git] / theme / default / style / print.css
1 /**************************************************************\r
2    AUTHOR:  Pat Heard (fullahead.org)\r
3    DATE:    2006.09.12\r
4    PURPOSE: Styles the page for print.  Techniques adopted from\r
5             http://www.alistapart.com/articles/goingtoprint/\r
6  **************************************************************/\r
7 \r
8 body {\r
9   font: 400 12pt verdana, arial, sans-serif;\r
10   color: #000;\r
11   background: #FFF;\r
12 }\r
13 \r
14 h1 {\r
15   margin-top: 30px;\r
16   font-size: 18pt;\r
17   border-bottom: 1px solid #999;\r
18 }\r
19 \r
20 h2 {\r
21   font-size: 16pt;\r
22 }\r
23 \r
24 h3 {\r
25   font-size: 14pt;\r
26 }\r
27 \r
28 h4, h5, h6 {\r
29   font-size: 12pt;\r
30 }\r
31 \r
32 acronym {\r
33   border: 0;\r
34 }\r
35 \r
36 a {\r
37   color: #00F;\r
38 }\r
39 \r
40 /* Prints the URL after a link in CSS2 supporting browsers */\r
41 a:link:after, \r
42 a:visited:after {\r
43    content: " (" attr(href) ") ";\r
44    font-size: 90%;\r
45 }\r
46 \r
47 \r
48 /* Don't display these elements since they're not useful on paper */\r
49 #header,\r
50 #menu,\r
51 .footer {\r
52   display: none;\r
53 }\r
54 \r
55 #content {\r
56   width: auto;\r
57   margin: 0 8%;\r
58   padding: 0;\r
59 }\r
60 \r
61 \r
62 \r