File: epub.css

package info (click to toggle)
python-django 3%3A3.2.19-1%2Bdeb12u2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 56,696 kB
  • sloc: python: 264,418; javascript: 18,362; xml: 193; makefile: 178; sh: 43
file content (66 lines) | stat: -rw-r--r-- 1,748 bytes parent folder | download | duplicates (6)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
h1 { margin-top: 0; }

/* Keep lists a bit narrow to maximize page estate regarding width. */
ol, ul {
    margin: 0;
    padding: 0 0 0 1.3em;
}

/* Images should never exceed the width of the page. */
img { max-width: 100%; }

/* Don't display URL after links, this is not print. */
.link-target { display: none; }

/* This is the front cover page of the book. */
.epub-cover { text-align: center; }
.epub-cover h1 { margin: 4em 0 0 0; }
.epub-cover h2 { margin: 1em 0; }
.epub-cover h3 { margin: 3em 0 2em 0; }

/* Code examples should never exceed the width of the page, so wrap instead. */
pre, span.pre { white-space: pre-wrap; }

pre {
    background-color: #f6f6f6;
    border: 0;
    padding: 0.5em;
    font-size: 90%;
}

/* Header for some code blocks. */
.code-block-caption {
    background-color: #393939;
    color: white;
    margin: 0;
    padding: 0.5em;
    font: bold 90% monospace;
}
.literal-block-wrapper pre {
    margin-top: 0;
}

a:link, a:visited { color: #396623; }
a:hover { color: #1d3311; }

/* Use special styled note boxes from the default theme, but with the left side
fitted after the icon, to allow text resizing with breaking. */
.note, .admonition {
    background-position: 9px 0.8em;
    background-repeat: no-repeat;
    padding: 0.8em 1em 0.8em 65px;
    margin: 1em 0;
    border: 0.01em solid black;
}

.note, .admonition { background-image: url(docicons-note.png); }
div.admonition-philosophy { background-image: url(docicons-philosophy.png); }
div.admonition-behind-the-scenes { background-image: url(docicons-behindscenes.png); }
.admonition.warning { background-image: url(docicons-warning.png); }

.admonition-title {
    font-weight: bold;
    margin: 0;
}

.admonition .last { margin-bottom: 0; }