diff --git a/docs/source/_static/theme_overrides.css b/docs/source/_static/theme_overrides.css new file mode 100644 index 000000000..ce4aad98f --- /dev/null +++ b/docs/source/_static/theme_overrides.css @@ -0,0 +1,31 @@ +/* this is the container for the pages */ +.wy-nav-content { + max-width: 100%; + padding: 0px 40px 0px 0px; + margin-top: 0px; + background-color: #fcfcfc; +} + +.wy-nav-content-wrap { + background-color: #fcfcfc; + border-right: solid 1px #e8e8e8; +} + +div.rst-content { + max-width: 1300px; + background-color: #fcfcfc; + border: 0; + padding: 0px 80px 10px 80px; + margin-left: 50px; +} + + +@media (max-width: 768px) { + div.rst-content { + max-width: 1300px; + background-color: #fcfcfc; + border: 0; + padding: 0px 10px 10px 10px; + margin-left: 0px; + } +} diff --git a/docs/source/conf.py b/docs/source/conf.py index 94f2c1d60..7141ba67d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -60,6 +60,11 @@ # 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 = [] +# html_static_path = [] +html_static_path = ["_static"] + +html_css_files = [ + "theme_overrides.css", +] master_doc = "index"