25 lines
374 B
CSS
25 lines
374 B
CSS
/* Footnote styling in text */
|
|
|
|
a.footnote-reference.superscript {
|
|
font-size: 0.6em;
|
|
vertical-align: super;
|
|
line-height: 0;
|
|
}
|
|
|
|
sup {
|
|
line-height: 0;
|
|
}
|
|
|
|
/* Format multiple footnote backlinks */
|
|
|
|
span.fn-backref {
|
|
display: none;
|
|
}
|
|
|
|
dl.footnote span.brackets:not(:last-child)::before {
|
|
content: '[';
|
|
}
|
|
dl.footnote span.brackets:not(:last-child)::after {
|
|
content: ']';
|
|
}
|