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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
|
:root {
--pst-color-link: var(--pst-color-primary);
--pst-color-link-hover: var(--pst-color-secondary);
--sd-color-primary: var(--pst-color-primary);
--sd-color-primary-text: var(--pst-color-text-base);
}
.simple li>p {
margin: 0;
}
/* multi column TOC */
.contents ul {
list-style-type: none;
padding-left: 2em;
}
.contents > ul {
padding-left: 0;
}
.multicol-toc > ul {
column-width: 250px;
column-gap: 60px;
-webkit-column-width: 250px;
-moz-column-width: 250px;
column-rule: 1px solid #ccc;
}
.multicol-toc > li {
/* break inside is not yet broadly supported, but we just try */
break-inside: avoid-column;
-moz-break-inside: avoid-column;
-webkit-break-inside: avoid-column;
}
.contents > ul > li > a {
font-size: 1.0em;
}
/* Hide red ΒΆ between the thumbnail and caption in gallery
Due the way that sphinx-gallery floats its captions the perma-link
does not float with it.
*/
.sphx-glr-thumbcontainer p.caption:hover > a.headerlink{
visibility: hidden;
}
/* slightly reduce horizontal margin compared to gallery.css to
* get four columns of thumbnails in the pydata-sphinx-theme. */
.sphx-glr-thumbcontainer {
margin: 5px 2px;
}
html[data-theme="dark"] .sphx-glr-thumbcontainer {
background-color: rgb(63, 63, 63);
}
/* workaround: the default padding decenters the image inside the frame */
.sphx-glr-thumbcontainer .figure {
padding: 0;
}
/* hide note linking to the download section at the bottom of galleries
* as suggested in https://github.com/sphinx-gallery/sphinx-gallery/issues/760
*/
div.sphx-glr-download-link-note {
height: 0px;
visibility: hidden;
}
/* re-style the download button */
div.sphx-glr-download a {
background-color: #E3F0F6;
background-image: none;
color: #11557c;
border: 0;
}
div.sphx-glr-download a:hover {
background-color: #BCD4DF;
}
/* Do not fold multiple figures in examples into two column layout. */
img.sphx-glr-multi-img {
max-width: 100%;
}
table.property-table th,
table.property-table td {
padding: 4px 10px;
}
/* Fix selection of parameter names; remove when fixed in the theme
* https://github.com/sphinx-doc/sphinx/pull/9763
*/
.classifier:before {
display: inline-block;
margin: 0 0.5em;
}
|