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
|
/* override table width restrictions */
@media screen and (min-width: 767px) {
.wy-table-responsive table td {
/* !important prevents the common CSS stylesheets from overriding
this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}
.wy-table-responsive {
overflow: visible !important;
}
}
.rst-content dl:not(.docutils) dt em {
font-style: normal !important;
line-height: 1.4em !important;
}
.rst-content div[class^='highlight'] {
background: #fff !important;
}
img.logo {
width: 120px !important;
}
/* Increas max-width of the content area slightly to accomodate larger screens */
.bd-main .bd-content .bd-article-container {
max-width: 1000px;
}
|