16 lines
611 B
HTML
16 lines
611 B
HTML
<style type="text/css">
|
|
div.section h1 {font-size: 225%;}
|
|
/* "Quick Search" should be capitalized. */
|
|
div#searchbox h3 {text-transform: capitalize;}
|
|
/* Make the document a little wider, less code is cut-off. */
|
|
div.document {width: 1008px;}
|
|
/* Much-improved spacing around code blocks. */
|
|
div.highlight pre {padding: 11px 14px;}
|
|
/* Remain Responsive! */
|
|
@media screen and (max-width: 1008px) {
|
|
div.sphinxsidebar {display: none;}
|
|
div.document {width: 100%!important;}
|
|
/* Have code blocks escape the document right-margin. */
|
|
div.highlight pre {margin-right: -30px;}
|
|
}
|
|
</style> |