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
|
.wy-side-nav-search {
background-color: #5d89bb;
}
/*There is a clash between xarray notebook styles and readthedoc*/
.rst-content dl.xr-attrs dt {
all: revert;
font-size: 95%;
white-space: nowrap;
}
.rst-content dl.xr-attrs dd {
font-size: 95%;
}
.xr-wrap {
font-size: 85%;
}
img.badge {
height: 20px;
}
.wy-table-responsive table td,
.wy-table-responsive table th {
white-space: normal !important;
vertical-align: top !important;
}
.wy-table-responsive {
margin-bottom: 24px;
max-width: 100%;
overflow: visible;
}
/* Hide notebooks warnings */
.nboutput .stderr {
display: none;
}
|