]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/Portland/portland.css
alternating row coloring
[SourceForge/phpwiki.git] / themes / Portland / portland.css
1 /**
2  * $Id: portland.css,v 1.3 2002-01-22 09:23:08 carstenklapp Exp $
3  *
4  * PhpWiki style sheet for the printed page:
5  * Black on white only, with no toolbar commands and no link icons.
6  * Styles are kept to a minimum, so the printed page will otherwise
7  * appear according to your browser's default font settings.
8  */
9 body {
10         color :      black;
11         background : white; 
12 }
13
14 /**
15  * Render links with black text and no underlines for readability on b&w
16  * printers which try to render colors as greys. (Greyscale text is often
17  * difficult to read on older 300dpi lasers.)
18  */
19 a {
20         text-decoration : underline;
21 }
22
23 /**
24  * Override the above to keep underlines for WikiLinks and generic urls,
25  * they are useful indicators on the printed page.
26  * (most browsers underline links by default anyway but this overrides
27  * any user-defined default style sheets.)
28  */
29 .wiki {
30         text-decoration : underline;
31         font-weight :     normal;
32 }
33
34 .rawurl {
35         text-decoration : underline;
36 }
37
38 /**
39  * Hide image borders for older browsers--newer broswers default to a zero
40  * border around images anyway.
41  */
42 img {
43         border : none;
44 }
45
46 /* Hide other non-essential page elements from the printer. */
47 .linkicon {
48         /**
49          * Some browsers ignore this completely: OmniWeb 4.1
50          * also shrink down the image to nothing so the text flows around it.
51          */
52         visibility : hidden;
53         width :  0;
54         height : 0;
55 }
56 .wiki-edithelp { font-size: smaller; }
57
58 /* PageList output */
59 tr.pagelistcolor { background: #eeeeee; }
60 tr.pagelistnocolor { background: white; }
61