diff --git a/doc/source/_static/custom.css b/doc/source/_static/custom.css new file mode 100644 index 000000000..b49c2c032 --- /dev/null +++ b/doc/source/_static/custom.css @@ -0,0 +1,6 @@ +.logo img { + width: 75%; +} +div.sphinxsidebarwrapper p.logo { + text-align: left; +} diff --git a/doc/source/_static/logo.svg b/doc/source/_static/logo.svg new file mode 100644 index 000000000..ded6d3414 --- /dev/null +++ b/doc/source/_static/logo.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + diff --git a/doc/source/conf.py b/doc/source/conf.py index 8680ae773..3d45c57a7 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -105,7 +105,7 @@ pygments_style = 'sphinx' # The name of an image file (relative to this directory) to place at the top # of the sidebar. -#html_logo = None +html_logo = '_static/logo.svg' # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 @@ -115,7 +115,7 @@ pygments_style = 'sphinx' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -#html_static_path = ['_static'] +html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format.