diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-11 13:10:09 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-11 13:10:09 -0400 |
commit | 7db9174dbc4a8361797cd909eb703bf5c42be971 (patch) | |
tree | 2d81592851ae433f22acc73421aa1172581239a1 /theme/default/print.css | |
parent | a8908117dbdc29692d808d178e1603e5b74ce566 (diff) |
move files in default theme to one directory
darcs-hash:20080611171009-84dde-54dc9de5d799d77950e09233fda6939e76c15247.gz
Diffstat (limited to 'theme/default/print.css')
-rw-r--r-- | theme/default/print.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/theme/default/print.css b/theme/default/print.css new file mode 100644 index 000000000..133bdd381 --- /dev/null +++ b/theme/default/print.css @@ -0,0 +1,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;
+}
+
+
+
|