File: mkdocs.css

package info (click to toggle)
python-einops 0.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,584 kB
  • sloc: python: 4,105; makefile: 6
file content (33 lines) | stat: -rw-r--r-- 689 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
31
32
33
div.highlight>pre {
    padding: 3px;
}

.md-typeset ul li,
.md-typeset ol li {
    /*original padding makes lists huge*/
    margin-bottom: 0.2em;
}

html {
    /* override 125% default, which looks terrible on smaller screens */
    font-size: 100% !important;

}

.jupyter-wrapper {
    /* set css var used by markdown */
    --jp-code-font-size: 90% !important;
}

.md-grid {
    /* change max width of page, looks much better on bigger screens */
    max-width: 72rem !important;
}

div.highlight {
    /* this was introduced to fix size of documentation script.
       This applies to multiline code fragments in markdown
     */
    font-size: 13px;
    background-color: #f2f2f2;
}