Skip to content
Open
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
42 changes: 42 additions & 0 deletions docs/_static/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
body {
background: #fafafa;
font-family: "Georgia", Times, serif;
font-size: 14px;
color: black;
}

.wy-nav-side {
font-family: "Georgia", Times, serif;
font-size: 13px;
color: black;
background: #fafafa;
}

.wy-side-nav-search, .wy-nav-top {
background: #fafafa;
color: black
}

a.icon.icon-home {
color: #11557C;
}

a.reference.internal {
font-size: 13px;
}

.wy-nav-content {
background: #fafafa;
}

.wy-content-wrap {
background: #fafafa;
}

.wy-menu-vertical a {
color: #43464b;
}

a:hover {
color: lightgrey;
}
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

html_css_files = ['css/custom.css']

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ In particular, you can:

To achieve this, mpl_interactions provides:

* A way to control the output of pyplot functions (e.g. ``plot`` and ``hist``) with sliders
* A way to control the output of pyplot functions (e.g. ``plot`` and ``hist``) with sliders.
* A function to compare horizontal and vertical slices of heatmaps.
* A function allowing zooming using the scroll wheel.

Expand Down