diff --git a/docs/_static/jax_logo_250px.png b/docs/_static/jax_logo_250px.png new file mode 100644 index 000000000..92a545225 Binary files /dev/null and b/docs/_static/jax_logo_250px.png differ diff --git a/docs/_static/style.css b/docs/_static/style.css new file mode 100644 index 000000000..9f7b58b0e --- /dev/null +++ b/docs/_static/style.css @@ -0,0 +1,5 @@ +@import url("theme.css"); + +.wy-side-nav-search { + background-color: #fcf; +} diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html new file mode 100644 index 000000000..4c57ba830 --- /dev/null +++ b/docs/_templates/layout.html @@ -0,0 +1,2 @@ +{% extends "!layout.html" %} +{% set css_files = css_files + ["_static/style.css"] %} diff --git a/docs/conf.py b/docs/conf.py index 5f0a40527..76eea6e4d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -108,8 +108,13 @@ html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. -# -# html_theme_options = {} +html_theme_options = { + 'logo_only': True, +} + +# The name of an image file (relative to this directory) to place at the top +# of the sidebar. +html_logo = '_static/jax_logo_250px.png' # 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,