-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathpdf-nav-style.css
46 lines (37 loc) · 1.04 KB
/
pdf-nav-style.css
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
@supports (content: leader(dotted)) {
.nav-list a[href]::after {
content: leader(dotted) target-counter(attr(href url), page);
}
}
.nav-list, .nav-list ul {
list-style-type: none;
}
.nav-list {
padding: 0;
}
#site-nav > ul > li {
margin-top: 20px;
}
#site-nav > ul > li > a {
font-weight: bold;
}
.nav-list li > a {
text-decoration: none;
display: grid;
align-items: end;
}
.nav-list li > a .leaders::after {
position: absolute;
content: " . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . "
". . . . . . . . . . . . . . . . . . . . . . . ";
text-align: right;
}
@page {
background: rgba(60, 60, 60, 0.14) !important;
@top-center {content: "Handbook Chapters";}
}