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
|
/* In furo, toctree captions needs to be enlarged. */
.toctree-wrapper.compound .caption {
font-size: 150%;
font-weight: bold;
}
/* Apply custom CSS for displaying docs version - https://github.com/pradyunsg/furo/pull/500 */
#furo-versions {
font-size: var(--sidebar-item-font-size);
}
#furo-versions .caption {
display: inline-block;
color: var(--color-sidebar-caption-text);
font-weight: bold;
text-transform: uppercase;
font-size: var(--sidebar-caption-font-size);
padding-right: var(--sidebar-expander-width);
margin-top: 0;
}
#furo-versions input[type=checkbox] {
display: none;
position: absolute;
box-sizing: border-box;
padding: 0;
overflow: visible;
}
#furo-versions input[type=checkbox]:checked ~ .rst-other-versions {
display: inline-block;
line-height: var(--sidebar-item-line-height);
padding: var(--sidebar-item-spacing-vertical) var(--sidebar-item-spacing-horizontal);
text-decoration: none;
}
#furo-versions .rst-other-versions {
display: none;
}
#furo-versions .versions-label {
position: relative;
float: right;
}
/* Fix for references. See Open3D PR #6470 */
div.citation > span {
padding-right: 2rem;
}
/* Limit output of jupyter notebook within a scrollable area in generated documentation */
.nboutput .output_area div > pre {
overflow-y: scroll !important;
max-height: 30em;
}
|