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
|
/* Lighten the header blue color */
div.wy-side-nav-search {
background-color: #7ebbff;
}
/* White version text in header */
div.version {
color: #ffffff !important;
font-weight: bolder !important;
}
/* Blue border around the search bar */
form.wy-form input {
border: 3px solid #6eabef !important;
}
/*
ul.current selects only the sidebar ul. Otherwise,
toctrees in the text get colored white, too
*/
ul.current li.toctree-l1:not(.current) a {
color: #f8f8f8 !important;
}
/* Increase font size for code object names in navbar toctree */
a.reference.internal code.docutils.literal.notranslate {
font-size: 85%;
}
/*
Reduce margin at bottom of 'property' docs.
Too much vertical whitespace previously.
*/
.rst-content dl.property {
margin-bottom: 10px !important;
}
/*
Reduced font size in footer
*/
footer, footer div[role=contentinfo] p, footer p.footer-license {
font-size: 13px;
}
footer p.footer-license {
line-height: 20px;
}
|