diff --git a/doc/_static/my-styles.css b/doc/_static/my-styles.css new file mode 100644 index 00000000..e6ff2796 --- /dev/null +++ b/doc/_static/my-styles.css @@ -0,0 +1,5 @@ + + +.navbar-form { + margin-right: -75px; +} \ No newline at end of file diff --git a/doc/conf.py b/doc/conf.py index b0724d82..46491058 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -119,6 +119,12 @@ html_copy_source = False html_show_sourcelink = False +# Add link to custom css +html_static_path = ["_static"] + +# Add function for stylesheets path +def setup(app): + app.add_css_file("my-styles.css") # -- Extension configuration -------------------------------------------------