Inline footnotes. (#600)

This commit is contained in:
boxdot 2018-02-02 13:15:48 +01:00 committed by Michael Bryan
parent 3d83b784b3
commit 43fcd00cd5
2 changed files with 23 additions and 0 deletions

View File

@ -47,6 +47,17 @@ table td {
table thead td {
font-weight: 700;
}
:not(.footnote-definition) + .footnote-definition,
.footnote-definition + :not(.footnote-definition) {
margin-top: 2em;
}
.footnote-definition {
font-size: 0.9em;
margin: 0.5em 0;
}
.footnote-definition p {
display: inline;
}
.sidebar {
position: fixed;
left: 0;

View File

@ -48,3 +48,15 @@ table {
td { font-weight: 700; }
}
}
:not(.footnote-definition) + .footnote-definition,
.footnote-definition + :not(.footnote-definition) {
margin-top: 2em;
}
.footnote-definition {
font-size: 0.9em;
margin: 0.5em 0;
p { display: inline; }
}