blob: 767cf7407db1616af64392ec709ec25da2804238 [file] [log] [blame]
Jean-Paul Calderone897bc252008-02-18 20:50:23 -05001/*
2 * The first part of this is the standard CSS generated by LaTeX2HTML,
3 * with the "empty" declarations removed.
4 */
5
6/* Century Schoolbook font is very similar to Computer Modern Math: cmmi */
7.math { font-family: "Century Schoolbook", serif; }
8.math i { font-family: "Century Schoolbook", serif;
9 font-weight: bold }
10.boldmath { font-family: "Century Schoolbook", serif;
11 font-weight: bold }
12
13/* Implement both fixed-size and relative sizes: */
14small.xtiny { font-size : xx-small }
15small.tiny { font-size : x-small }
16small.scriptsize { font-size : smaller }
17small.footnotesize { font-size : small }
18big.xlarge { font-size : large }
19big.xxlarge { font-size : x-large }
20big.huge { font-size : larger }
21big.xhuge { font-size : xx-large }
22
23/*
24 * Document-specific styles come next;
25 * these are added for the Python documentation.
26 *
27 * Note that the size specifications for the H* elements are because
28 * Netscape on Solaris otherwise doesn't get it right; they all end up
29 * the normal text size.
30 */
31
32body { color: #000000;
33 background-color: #ffffff; }
34
35a:active { color: #ff0000; }
36a:visited { color: #551a8b; }
37a:link { color: #0000bb; }
38
39h1, h2, h3, h4, h5, h6 { font-family: avantgarde, sans-serif;
40 font-weight: bold }
41h1 { font-size: 180% }
42h2 { font-size: 150% }
43h3, h4 { font-size: 120% }
44code, tt { font-family: monospace }
45var { font-family: times, serif;
46 font-style: italic;
47 font-weight: normal }
48
49.navigation td { background-color: #99ccff;
50 font-weight: bold;
51 font-family: avantgarde, sans-serif;
52 font-size: 110% }
53
54.release-info { font-style: italic; }
55
56.titlegraphic { vertical-align: top; }
57
58.verbatim { color: #00008b }
59
60.email { font-family: avantgarde, sans-serif }
61.mimetype { font-family: avantgarde, sans-serif }
62.newsgroup { font-family: avantgarde, sans-serif }
63.url { font-family: avantgarde, sans-serif }
64.file { font-family: avantgarde, sans-serif }
65
66.tableheader { background-color: #99ccff;
67 font-family: avantgarde, sans-serif; }
68
69.refcount-info { font-style: italic }
70.refcount-info .value { font-weight: bold;
71 color: #006600 }
72
73/*
74 * Some decoration for the "See also:" blocks, in part inspired by some of
75 * the styling on Lars Marius Garshol's XSA pages.
76 * (The blue in the navigation bars is #99CCFF.)
77 */
78.seealso { background-color: #fffaf0;
79 border: thin solid black;
80 padding: 4pt }
81
82.seealso .heading { font-size: 110% }
83
84/*
85 * Class 'availability' is used for module availability statements at
86 * the top of modules.
87 */
88.availability .platform { font-weight: bold }