File: theme_overrides.css

package info (click to toggle)
python-altair 5.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,952 kB
  • sloc: python: 25,649; sh: 14; makefile: 5
file content (30 lines) | stat: -rw-r--r-- 759 bytes parent folder | download
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;
}