Is there an easy way to customize the existing sphinxdoc theme? For the default theme, there are many theme-attributes, but in sphinxdoc I can\'t even set a log
sphinxdoc
For Sphinx 1.8.2 the default theme is Alabaster which I customize by adding a new stylesheet configured with html_style:
conf.py:
conf.py
html_style = 'custom.css'
_static/custom.css:
_static/custom.css
@import url("alabaster.css"); blockquote{ background: white; color: black; display: block; }