1/*
2    CSS file for pydoc.
3
4    Contents of this file are subject to change without notice.
5
6*/
7
8body {
9    background-color: #f0f0f8;
10}
11
12table.heading tr {
13    background-color: #7799ee;
14}
15
16.decor {
17    color: #ffffff;
18}
19
20.title-decor {
21    background-color: #ffc8d8;
22    color: #000000;
23}
24
25.pkg-content-decor {
26    background-color: #aa55cc;
27}
28
29.index-decor {
30    background-color: #ee77aa;
31}
32
33.functions-decor {
34    background-color: #eeaa77;
35}
36
37.data-decor {
38    background-color: #55aa55;
39}
40
41.author-decor {
42    background-color: #7799ee;
43}
44
45.credits-decor {
46    background-color: #7799ee;
47}
48
49.error-decor {
50    background-color: #bb0000;
51}
52
53.grey {
54    color: #909090;
55}
56
57.white {
58    color: #ffffff;
59}
60
61.repr {
62    color: #c040c0;
63}
64
65table.heading tr td.title {
66    vertical-align: bottom;
67}
68
69table.heading tr td.extra {
70    vertical-align: bottom;
71    text-align: right;
72}
73
74.heading-text {
75    font-family: helvetica, arial;
76}
77
78.bigsection {
79    font-size: larger;
80}
81
82.title {
83    font-size: x-large;
84}
85
86.code {
87    font-family: monospace;
88}
89
90table {
91    width: 100%;
92    border-spacing : 0;
93    border-collapse : collapse;
94    border: 0;
95}
96
97td {
98    padding: 2;
99}
100
101td.section-title {
102    vertical-align: bottom;
103}
104
105td.multicolumn {
106    width: 25%;
107    vertical-align: bottom;
108}
109
110td.singlecolumn {
111    width: 100%;
112}
113