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
|
.wy-nav-side p.caption {
color: #F5F5F5;
}
div.wy-side-nav-search {
background: #757575;
}
div.wy-side-nay {
background: #212121;
}
table.field-list td li {
line-height: 18px;
}
table.docutils td p {
font-size: 14px !important;
margin-bottom: 6px;
}
table.docutils td li {
line-height: 18px;
}
table td.vl-type-def {
max-width: 170px;
overflow-x: clip;
}
/* Hide this empty container as it leads to a vertical scrollbar in
the primary sidebar even if there is no need for such a scrollbar as all content
would fit onto the screen */
#rtd-footer-container {
display: none;
}
/* Default for the pydata theme is 25% */
.bd-sidebar-primary {
max-width: 20%
}
/* By providing max-width above for .bd-sidebar-primary, we also overwrite
the setting from the template for small screens, e.g. mobile phones. The values below
are copied out of pydata-sphinx-theme.css so that the sidebar is again
properly displayed on mobile devices and not restricted to 20% */
@media (max-width: 959.98px) {
.bd-sidebar-primary {
max-width: 350px;
}
}
.properties-example .vega-bind-name {
display: inline-block;
min-width: 150px;
}
.properties-example .vega-bindings {
padding-left: 20px;
padding-bottom: 10px;
}
.properties-example .vega-bindings select {
max-width: 180px;
}
.properties-example .vega-bindings input {
vertical-align: text-bottom;
margin-right: 3px;
}
.full-width-plot {
width: 100%;
}
/* Configurations for the start page
------------------------------------ */
.lead {
font-size: 1.3em;
font-weight: 300;
margin-top: 22px;
margin-bottom: 22px;
/* This pushes down the lead so that it is not rendered on top of
the gallery (showcase) which has an absolute position. The value is calculated
as height (showcase) + margin-bottom (showcase) + margin-top (lead) */
padding-top: 332px;
}
.lead strong {
/* Default is bolder which is less */
font-weight: bold;
}
/* ---------------------------------- */
|