-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanywhere-footnote.css
More file actions
47 lines (40 loc) · 914 Bytes
/
anywhere-footnote.css
File metadata and controls
47 lines (40 loc) · 914 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
.afnote-marker {
vertical-align: super;
font-size: 100%;
text-decoration: none;
}
.afnote-marker::before {
content: "[";
}
.afnote-marker::after {
content: "]";
}
.afnote-block {
text-decoration: none;
}
.afnote-hr-divider {
height: 1px;
background-color: #ccc; /* Standard gray color similar to default HR */
border: none;
margin: 0.5em 0; /* Standard HR margin */
width: 20%;
}
div.afnote-horizontal dl {
display: grid;
grid-template-columns: 30px auto;
grid-column-gap: 1px;
}
/* Force each dt and dd to be on the same line */
div.afnote-horizontal dl > dt,
div.afnote-horizontal dl > dd {
display: inline !important;
vertical-align: top !important;
margin: 0 !important;
padding: 0 !important;
}
/* Remove margins from paragraphs inside dd */
div.afnote-horizontal dl > dd p {
display: inline;
margin: 0;
padding: 0;
}