blob: c86759a22366ad46b250153b4341a62b4a510cf7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
/**
* Sphinx stylesheet -- default theme
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
@import url("basic.css");
body {
color: #000000;
font-family: "Free Sans", Arial, Verdana, sans;
font-size: 11pt;
width: 70em;
margin: 0;
margin-left: auto;
margin-right: auto;
}
div.related {
background: #eeeeec; /* #d3d7cf; */
color: white;
padding-bottom: .6em;
padding-top: .6em;
}
div.related a {
color: #2e3436;
text-decoration: none;
}
div.document {
background: #eeeeec;
}
div.body {
background: white;
padding: .5em;
-moz-border-radius: 0px 10px 10px 10px;
border-right: 1px solid #eeeeec;
}
div.document h1, h2, h3, h4 {
color: #204a87;
font-weight: normal;
letter-spacing: .05em;
}
div.document p, dl, div.highlight {
margin-left: 25px;
}
div.document dd p, dd {
margin-left: .5em;
}
div.document a {
color: #f57900;
}
div.sphinxsidebarwrapper {
background: url(bgfooter.png) top left repeat-x #eeeeec;
padding-right: .5em;
}
div.sphinxsidebar ul {
margin: 0;
padding: 0;
}
div.sphinxsidebar a {
color: #888a85;
text-decoration: none;
}
div.footer {
font-size: .8em;
color: #888a85;
text-align: right;
padding: 10px;
}
div.footer a {
color: #888a85;
}
div.highlight pre {
background-color: #eeeeec;
border: 1px solid #babdb6;
padding: 7px;
}
|