Skip to content

Commit

Permalink
Update reporting chapter
Browse files Browse the repository at this point in the history
  • Loading branch information
enclaved committed Nov 28, 2023
1 parent 4df701f commit d4d7f03
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 120 deletions.
22 changes: 18 additions & 4 deletions _static/overrides.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
body {
background: #fff !important;
color: #000 !important;
}
*, h1, h2, h3, h4, h5 {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif !important;
font-family: Inter, -apple-system, "system-ui", "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !important;
}
a {
color: #295ada;
Expand All @@ -13,6 +14,9 @@ a:hover {
.wy-menu-vertical a:hover {
background-color: #dfebff !important;
}
.wy-menu-vertical li.current>a, .wy-menu-vertical li.on a {
background-color: #fff !important;
}
.wy-nav-side {
background: linear-gradient(#181818, #1f1f1f) !important;
padding-bottom: 0 !important;
Expand All @@ -33,16 +37,26 @@ a:hover {
display: none !important;
}
.wy-side-nav-search input[type=text] {
border-radius: 3px !important;
border: none !important;
border-radius: 6px !important;
}
.wy-nav-content, .wy-nav-content-wrap {
background: transparent !important;
}
.wy-table-responsive table td, .wy-table-responsive table th {
white-space: initial !important;
}
code, code *, pre, pre * {
font-family: "Space Mono", monospace !important;
}
.rst-content tt.literal, .rst-content tt.literal, .rst-content code.literal {
color: #58b !important;
.rst-content code, .rst-content tt, code {
color: #dc3545 !important;
background: initial !important;
border: initial !important;
padding: initial !important;
}
table.docutils {
width: 100% !important;
}
.rst-versions {
display: none !important;
Expand Down
4 changes: 2 additions & 2 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

html_favicon = 'icon.png'
html_favicon = '_static/icon.png'

html_css_files = ['overrides.css', 'https://fonts.googleapis.com/css2?family=Space+Mono&display=swap']
html_css_files = ['overrides.css', 'https://fonts.googleapis.com/css2?family=Space+Mono&family=Inter:wght@300;400;500;600;700&display=swap']

# Custom sidebar templates, must be a dictionary that maps document names
# to template names.
Expand Down

0 comments on commit d4d7f03

Please sign in to comment.