diff --git a/docs/_static/custom.css b/docs/_static/custom.css new file mode 100644 index 0000000..faea178 --- /dev/null +++ b/docs/_static/custom.css @@ -0,0 +1,3 @@ +.wy-nav-content { + max-width: 75% !important; +} \ No newline at end of file diff --git a/docs/_static/us4us-logo-white.png b/docs/_static/us4us-logo-white.png new file mode 100644 index 0000000..a2d44cb Binary files /dev/null and b/docs/_static/us4us-logo-white.png differ diff --git a/docs/conf.py b/docs/conf.py index 65b83ed..7625532 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -16,7 +16,7 @@ from datetime import datetime html_theme = 'sphinx_rtd_theme' -html_logo = "https://us4us.eu/wp-content/uploads/2018/10/us4us-logo-white.png" +html_logo = "_static/us4us-logo-white.png" current_year = datetime.now().year @@ -58,6 +58,9 @@ # Set the name of the project to appear in the sidebar } +html_css_files = [ + 'custom.css', +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates']