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
|
/* Avoid white space above the logo */
div.document {
margin-top: 0px;
}
div.body {
padding-top: 30px;
}
/* Main page title */
div.body h1 {
text-align: center;
font-size: 270%;
color: #643200;
}
/* Secondary sections title */
div.body h2 {
color: #643200;
}
/* Third sections title */
div.sphinxsidebar h3 {
font-size: xx-large;
}
/* Python examples code block */
div.highlight pre {
background-color: #f5f5f5;
font-size: 80%;
padding-left: 10px;
padding-right: 10px;
}
/* restyle table */
div.body table.docutils tr{
background: #ccc; /* fallback if nth-child is not supported */
}
div.body table.docutils tr:nth-child(odd){
background: #f8f4ee;
}
div.body table.docutils tr:nth-child(even){
background: #fff;
}
div.body table.docutils td{
border: none;
}
/* Move the ads down in read the docs */
div.sphinxsidebarwrapper ul:last-of-type {
margin-top: -10px;
margin-bottom: 100px;
}
/* But don't apply this to nested ul */
div.sphinxsidebarwrapper ul ul:last-of-type {
margin-top: 0px;
margin-bottom: 20px;
}
/* Sidebar subtitle */
p.caption {
font-size: x-large;
font-weight: 400;
}
div.body p.caption {
color: #643200;
font-size: 180%;
font-family: Georgia, serif;
font-weight: normal;
}
|