Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions docs/source/_static/theme_overrides.css
Original file line number Diff line number Diff line change
@@ -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;
}
}
7 changes: 6 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"