blob: bde3ce0c142482660b740fededb5b8b4fda3f254 [file] [log] [blame]
Fred Drake00d98ee1999-02-16 20:27:08 +00001/*
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; font-weight: bold }
9.BOLDMATH { font-family: "Century Schoolbook", serif; font-weight: bold }
10
11/* implement both fixed-size and relative sizes */
12SMALL.XTINY { font-size : xx-small }
13SMALL.TINY { font-size : x-small }
14SMALL.SCRIPTSIZE { font-size : smaller }
15SMALL.FOOTNOTESIZE { font-size : small }
16BIG.XLARGE { font-size : large }
17BIG.XXLARGE { font-size : x-large }
18BIG.HUGE { font-size : larger }
19BIG.XHUGE { font-size : xx-large }
20
21/*
22 * Document-specific styles come next;
23 * these are added for the Python documentation.
24 *
25 * Note that the size specifications for the H* elements are because
26 * Netscape on Solaris otherwise doesn't get it right; they all end up
27 * the normal text size.
28 */
29
30h1, h2, h3, h4, h5, h6 { font-family: avantgarde, sans-serif;
31 font-weight: bold }
Fred Drakedf5d50d1999-02-19 23:03:04 +000032h1 { font-size: 180% }
33h2 { font-size: 150% }
34h3, h4 { font-size: 120% }
Fred Drakebdcc96c2000-03-29 22:41:52 +000035code, tt { font-family: monospace }
36var { font-family: serif;
37 font-style: italic;
38 font-weight: normal }
Fred Drake00d98ee1999-02-16 20:27:08 +000039
Fred Drake3eb7c122000-08-31 07:15:57 +000040.navigation td { background-color: #99ccff;
41 font-weight: bold;
42 font-family: avantgarde, sans-serif;
Fred Drake00d98ee1999-02-16 20:27:08 +000043 font-size: 110% }
Fred Drake699f98c2000-08-29 21:57:34 +000044
45.titlegraphic { vertical-align: top; }
Fred Drake00d98ee1999-02-16 20:27:08 +000046
Fred Drakebdcc96c2000-03-29 22:41:52 +000047.verbatim { color: #00008b }
Fred Drake00d98ee1999-02-16 20:27:08 +000048
49.email { font-family: avantgarde, sans-serif }
50.mimetype { font-family: avantgarde, sans-serif }
51.newsgroup { font-family: avantgarde, sans-serif }
52.url { font-family: avantgarde, sans-serif }
Fred Drakebdcc96c2000-03-29 22:41:52 +000053.file { font-family: avantgarde, sans-serif }
54
Fred Drakeeacc4fc2000-08-30 15:02:13 +000055.tableheader td { background-color: #99ccff; }
56.tableheader th { background-color: #99ccff; }
57
Fred Drakebdcc96c2000-03-29 22:41:52 +000058.refcount-info { font-style: italic }
59.refcount-info .value { font-weight: bold;
60 color: #006600 }
Fred Drake01bc01c1999-03-02 15:58:20 +000061
62/*
Fred Drake7c6a90d1999-03-25 22:22:45 +000063 * Some decoration for the "See also:" blocks, in part inspired by some of
64 * the styling on Lars Marius Garshol's XSA pages.
65 * (The blue in the navigation bars is #99CCFF.)
66 */
Fred Drakebdcc96c2000-03-29 22:41:52 +000067.seealso { background-color: #fffaf0;
Fred Drake7c6a90d1999-03-25 22:22:45 +000068 border: thin solid black;
69 padding: 4pt }
70
71.seealso .heading { font-size: 110% }
72
73/*
Fred Drake01bc01c1999-03-02 15:58:20 +000074 * Class 'availability' is used for module availability statements at
75 * the top of modules. Otherwise, rely on context for platform specifiers
76 * (generated by \platform and \platformof).
77 */
78.availability .platform { font-weight: bold }