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
9 changes: 0 additions & 9 deletions doc/_static/reset-syntax.css

This file was deleted.

20 changes: 19 additions & 1 deletion doc/_static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ html {
position: relative;
min-height: 100%;
}

/* Syntax reset */
.highlight a {
color: var(--a-color);
}
.highlight * {
color: inherit;
font-weight: inherit;
font-style: inherit;
background-color: #fafafa;
}

/* overrides of bootstrap fonts */
body {
font-family:"Source Sans Pro", sans-serif;
Expand Down Expand Up @@ -444,7 +456,13 @@ div.institutions a {
.hidden {
display: none;
}
/* Pandas DataFrame _repr_html_ */

/* Pandas DataFrame _repr_html_ */
table.dataframe th,td {
padding: 5px;
}

/* Sphinx-gallery backreference links */
a[class^="sphx-glr-backref-module-mne"] {
font-weight: 600;
}
2 changes: 0 additions & 2 deletions doc/_templates/layout.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
{% extends "!layout.html" %}

{% set css_files = css_files + ['_static/reset-syntax.css'] %}

{% block extrahead %}

<script type="text/javascript" src="{{ pathto('_static/copybutton.js', 1) }}"></script>
Expand Down
2 changes: 1 addition & 1 deletion tutorials/intro/plot_10_overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
#
# The :class:`~mne.io.Raw` object and the events array are the bare minimum
# needed to create an :class:`~mne.Epochs` object, which we create with the
# :class:`mne.Epochs` class constructor. Here we'll also specify some data
# :class:`~mne.Epochs` class constructor. Here we'll also specify some data
# quality constraints: we'll reject any epoch where peak-to-peak signal
# amplitude is beyond reasonable limits for that channel type. This is done
# with a *rejection dictionary*; you may include or omit thresholds for any of
Expand Down