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
|
/* 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;
}
}
.feature_yes {
color: darkgreen;
font-weight: bolder;
}
.feature_no {
color: darkred;
}
@media (prefers-color-scheme: dark) {
.feature_yes {
color: #53b353
}
.feature_no {
color: #ff5454
}
.highlight pre {
background: #282a36 !important;
}
.highlight .go {
color: #98a5f7 !important;
}
}
|