Overwriting the CSS file caused styles to fall out-of-date with the HTML generated by newer versions of Sphinx. This way, we just need to maintain a few customizations to the base theme.
11 lines
232 B
CSS
11 lines
232 B
CSS
@import url('./sphinxdoc.css');
|
|
|
|
dl.method, dl.attribute, dl.staticmethod, dl.classmethod {
|
|
border-top: 1px solid #aaa;
|
|
padding-top: 4px;
|
|
}
|
|
|
|
dl.class, dl.function {
|
|
border-top: 2px solid #888;
|
|
padding-top: 4px;
|
|
}
|