Skip to content

Commit

Permalink
Widen the RTD page #997
Browse files Browse the repository at this point in the history
Reference: #977

Note: I just noticed that I named the branch with 997 but the issue is 977.

Signed-off-by: John M. Horan <[email protected]>
  • Loading branch information
johnmhoran committed Nov 15, 2023
1 parent a114deb commit c5135f4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
20 changes: 20 additions & 0 deletions docs/source/_static/theme_overrides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* 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;
}
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"

0 comments on commit c5135f4

Please sign in to comment.