New "basic" theme which includes only the necessary CSS.
[cocanwiki.git] / html / _css / print.css
1 /* Print media.
2  * $Id: print.css,v 1.1 2004/10/18 13:34:21 rich Exp $
3  */
4
5 @media print {
6   /* Move the body up (no top menu anymore). */
7   body { margin-top: 4em; }
8
9   /* Hide the navigation. */
10   div#search_div { display: none; }
11   div#navigation_div { display: none; }
12   div#navigation_space_div { display: none; }
13   ul#topmenu { display: none; }
14   div#menu_div { display: none; }
15   p.edit_link { display: none; }
16
17   a.newpage {
18     background: none;
19     padding-right: 0px;
20   }
21
22   /* Display the target of external links. */
23   a.external {
24     background: none;
25     padding-right: 0px;
26   }
27   a.external:after {
28     content: " [" attr(href) "]";
29   }
30   a.mailto:after {
31     background: none;
32     padding-right: 0px;
33   }
34   a.mailto:after {
35     content: " [" attr(href) "]";
36   }
37 }