guzzle / guzzle_sphinx_theme

Sphinx theme used by Guzzle
MIT License
169 stars 60 forks source link

Is there a way to customise the css? #30

Closed MichaelClerx closed 6 years ago

MichaelClerx commented 6 years ago

Hi all. Thanks for the lovely theme!

Is there a way to customise/tweak the css? I'd like to add a border above the first method in every class (so that it's more clear where the class description ends and the method descriptions start)

tristanlins commented 6 years ago

You can place a custom.css in your _static directory:

@import url("guzzle.css");

/* custom styles here */

And use this in your conf.py: html_style = 'custom.css'

MichaelClerx commented 6 years ago

Thanks!