Made doc-generation configuration automatic.
[privoxy.git] / doc / webserver / p_doc.css
1 /*
2  * CSS for Privoxy documentation
3  *
4  * $Id: privoxy.css,v 1.2 2002/04/09 11:55:20 oes Exp $
5  */
6
7 /*
8  * Global fonts, colors, margins:
9  */ 
10 body,td,th { font-family: arial, helvetica, sans-serif; }
11 body { margin: 4%; color: #000000; background-color: #eeeeee; }
12
13 /*
14  * Headings hierarchy in terms of size and color:
15  */
16 h1 { color: #4c000f; font-size: 160%; }
17 h2 { color: #660014; font-size: 140%; }
18 h3 { color: #820019; font-size: 120%; }
19 h4 { color: #99001d; font-size: 110%; }
20
21 /*
22  * Make headings stand out:
23  * Indent all content in chapters, by additional 2%,
24  * and then pull the headings back left.
25  */
26 div.sect1 { margin-left: 2%; }
27 h1,h2,h3,h4 {margin-left: -2%; }
28 h1.title { margin-left: 0; }
29
30 /*
31  * Underlined links disturb the examples;
32  * Let them get darker instead of purple after visited.
33  */
34 a { text-decoration: none; }
35 a:link { color: #0c29ff; }
36 a:visited { color: #071899; }
37
38 /*
39  * Special highlighting:
40  * Code examples in embedded in the text flow become half-bold,
41  * Emphasis gets h4-red.
42  * Warnings get the same bg as in privoxy.css
43  */
44 tt.literal { font-weight: 600; }
45 i.emphasis { color: #99001d; }
46 table.warning { border: 0; background-color: #ffdddd;}
47 span.guibutton { 
48   white-space: nowrap;
49   width: auto;
50   padding: 2px;
51   background-color: #dddddd;
52   color:            #000000;
53   text-decoration: none;
54   border-top:    1px solid #ffffff;
55   border-left:   1px solid #ffffff;
56   border-bottom: 1px solid #000000;
57   border-right:  1px solid #000000;
58 }
59
60 /*
61  * Misc:
62  */
63 ul { list-style-type: square; }