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
|
/* Import the Sphinx theme style. */
@import url("default.css");
/* Wrap sidebar content even within words so that long
document names do not escape sidebar borders. */
div.sphinxsidebarwrapper {
word-wrap: break-word;
}
/* Reduce the font size of the side bar */
div.sphinxsidebar {
font-size: 75%;
}
/* Reduce the font size of the initial toc tree */
div.contents {
font-size: 75%;
}
/* Reduce the size for the admonition boxes */
div.admonition {
font-size: 85%;
}
/* Make the "See Also" boxes borders darker */
div.seealso {
border-color: #fe6;
}
/* Draw a box for todo items */
div.admonition-todo {
border: 1px solid #ddd;
background-color: #fcfcfc;
}
table.docutils td, table.docutils th {
border-width: 0;
}
|