-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (45 loc) · 699 Bytes
/
Copy pathstyle.css
File metadata and controls
53 lines (45 loc) · 699 Bytes
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
.book .book-header h1 {
opacity: 1;
text-align: left;
}
#header .title {
margin-bottom: 0em;
}
#header h4.author {
margin: 0;
color: #666;
}
#header h4.author em {
font-style: normal;
}
.footnotes {
font-size: 13px;
}
/* page breaks; aka CSS fragmentation */
.level1 {
break-before: page;
}
.section > h1, .section > h2, .section > h3, .section > h4, .section > h5, .section > h6 {
break-after: avoid;
}
.footnotes {
break-before: always;
break-after: always;
}
.figure {
break-inside: avoid;
}
/* do not break captions */
caption {
break-inside: avoid;
break-after: avoid;
}
li{
margin: 1px 0;
}
ol{
margin: 1px 0;
}
pre code {
white-space: pre-wrap;
}