forked from matplotlib/mpl-sphinx-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (35 loc) · 897 Bytes
/
style.css
File metadata and controls
42 lines (35 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* rgb #11557c */
html[data-theme="light"] {
--pst-color-primary: hsl(202, 76%, 28%);
--pst-color-text-base: rgb(51, 51, 51);
--sd-color-primary-text: rgb(250, 250, 250);
--pst-color-link: hsl(202, 76%, 25%);
}
html[data-theme="dark"] {
--pst-color-primary: rgb(70, 152, 198);
--pst-color-text-base: rgb(250, 250, 250);
--sd-color-primary-text: rgb(51, 51, 51);
--pst-color-link: hsl(202, 53%, 80%);
}
:root {
--pst-color-link-hover: var(--pst-color-secondary);
}
.sidebar-donate > .sd-btn {
width: 100%;
}
#navbar-icon-links {
margin-left: 1.5em;
}
#navbar-icon-links .nav-link {
color: #989898;
}
#navbar-icon-links .nav-link:hover {
color: var(--pst-color-primary);
}
/* reduce height of nav bar when items don't fit in one line
See https://github.com/pydata/pydata-sphinx-theme/pull/2117
*/
.navbar-item {
height: unset !important;
margin: 0.25rem 0;
}