Regenerate docs
[privoxy.git] / doc / webserver / p_doc.css
1 /*
2  * CSS for Privoxy documentation
3  *
4  * $Id: p_doc.css,v 1.4 2006/07/18 14:48:52 david__schmidt 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 h2.subtitle { margin-left: 0; }
30
31 /*
32  * Underlined links disturb the examples;
33  * Let them get darker instead of purple after visited.
34  */
35 a { text-decoration: none; }
36 a:link { color: #0c29ff; }
37 a:visited { color: #071899; }
38
39 /*
40  * Special highlighting:
41  * Code examples in embedded in the text flow become half-bold,
42  * Emphasis gets h4-red.
43  * Warnings get the same bg as in privoxy.css
44  */
45 tt.literal { font-weight: 600; }
46 i.emphasis { color: #99001d; }
47 table.warning { border: 0; background-color: #ffdddd;}
48 span.guibutton { 
49   white-space: nowrap;
50   width: auto;
51   padding: 2px;
52   background-color: #dddddd;
53   color:            #000000;
54   text-decoration: none;
55   border-top:    1px solid #ffffff;
56   border-left:   1px solid #ffffff;
57   border-bottom: 1px solid #000000;
58   border-right:  1px solid #000000;
59 }
60
61 /*
62  * Misc:
63  */
64 ul { list-style-type: square; }
65 /* Privoxy, of course */
66 .application {font-weight: bold; font-size:105%; color: #99001d;}