-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
endnote.css
53 lines (45 loc) · 1.4 KB
/
endnote.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
47
48
49
50
51
52
53
:root {
--vs-endnote--anchor-text-decoration: none;
--vs-endnote--anchor-text-decoration-on-hover: underline;
--vs-endnote--call-font-size: 0.8em;
--vs-endnote--call-margin-inline: 0;
--vs-endnote--section-margin-block: var(--vs-spacing-rlh);
--vs-endnote--section-ol-list-style-type: decimal;
--vs-endnote--backlink-display-on-print: none;
}
.footnote-ref {
font-size: var(--vs-endnote--call-font-size);
margin-inline: var(--vs-endnote--call-margin-inline);
}
.footnote-ref > sup {
font-size: 100%;
}
a:is(.footnote-ref, .footnote-back) {
text-decoration: var(--vs-endnote--anchor-text-decoration);
}
a:is(.footnote-ref, .footnote-back):hover {
text-decoration: var(--vs-endnote--anchor-text-decoration-on-hover);
}
[role='doc-endnotes'] {
font-size: var(--vs-endnote--section-font-size);
margin-block: var(--vs-endnote--section-margin-block);
margin-inline: var(--vs-endnote--section-margin-inline);
}
[role='doc-endnotes'] > hr {
border-color: var(
--vs-endnote--section-hr-border-color,
var(--vs--hr-border-color, var(--vs-border-color))
);
border-block-start-width: var(
--vs-endnote--section-hr-border-width,
var(--vs--hr-border-width, var(--vs-border-width))
);
}
[role='doc-endnotes'] > ol {
list-style-type: var(--vs-endnote--section-ol-list-style-type);
}
@media print {
[role='doc-backlink'] {
display: var(--vs-endnote--backlink-display-on-print);
}
}