Skip to content

Commit 4faba43

Browse files
committed
Add line over footnotes
Add a separator/break line above footnotes.
1 parent 597aa4d commit 4faba43

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

doc/_static/style.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ body > .footer { margin: 1em 0 1em -14em; clear:both;}
8787
body > .navigation
8888
{
8989
margin-left: -14em;
90+
margin-inline-start: -14em;
9091
width: 14em;
9192
float: left;
9293
}
@@ -241,6 +242,17 @@ table caption { font-weight: bold; font-size: smaller; }
241242

242243
table.footnote {
243244
font-size: calc(1em - 1pt);
245+
margin-block-start: 1em;
246+
position: relative
247+
}
248+
249+
table.footnote::before {
250+
border: 1px solid black;
251+
content: "";
252+
left: 0;
253+
position: absolute;
254+
top: 0;
255+
width: 25%;
244256
}
245257

246258
td {

website/www/_static/style.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,16 @@ table caption { font-weight: bold; font-size: smaller; }
242242

243243
table.footnote {
244244
font-size: calc(1em - 1pt);
245+
position: relative
246+
}
247+
248+
table.footnote::before {
249+
border: 1px solid black;
250+
content: "";
251+
left: 0;
252+
position: absolute;
253+
top: 0;
254+
width: 25%;
245255
}
246256

247257
td {

0 commit comments

Comments
 (0)