diff options
author | Laura Ekstrand <laura@jlekstrand.net> | 2018-06-06 14:48:23 -0700 |
---|---|---|
committer | Laura Ekstrand <laura@jlekstrand.net> | 2018-06-15 16:07:20 -0700 |
commit | 3d15235ffa309a7afb074bc2e6c35eed2464c4da (patch) | |
tree | 20423d054c147bd5deeb7bfe2e9252212bf55a24 | |
parent | 2272e046b2931d61d599714d8628696e98c5f4eb (diff) |
docs: Change navigation color and establish override css file.
-rw-r--r-- | docs/_static/css/theme_override.css | 9 | ||||
-rw-r--r-- | docs/conf.py | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/docs/_static/css/theme_override.css b/docs/_static/css/theme_override.css new file mode 100644 index 0000000000..b4ec7a517f --- /dev/null +++ b/docs/_static/css/theme_override.css @@ -0,0 +1,9 @@ +@import url("theme.css"); + +.wy-side-nav-search { + background-color: #100f0f; +} + +.wy-nav-top { + background-color: #100f0f; +} diff --git a/docs/conf.py b/docs/conf.py index c40f127180..4e9cb0b8be 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -104,8 +104,9 @@ html_theme_options = { # 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 = ['specs/'] +html_static_path = ['specs/', '_static'] +html_style = 'css/theme_override.css' # -- Options for HTMLHelp output ------------------------------------------ |