How I can add custom css file? The following config does not work for me:
# conf.py html_static_path = [\'_static\'] html_theme = \'default\' html_theme_opti
A simpler way is to add this to your conf.py:
conf.py
def setup(app): app.add_css_file('css/custom.css') # may also be an URL
Then put the file into the _static/css/ folder.
_static/css/