Mercurial > p > roundup > code
diff doc/_static/style.css @ 7313:1a221cf0758b
Add line over footnotes
Add a separator/break line above footnotes.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Wed, 10 May 2023 23:35:20 -0400 |
| parents | 673d8e0d3abf |
| children | 4917bb4b5eac |
line wrap: on
line diff
--- a/doc/_static/style.css Wed May 10 23:02:12 2023 -0400 +++ b/doc/_static/style.css Wed May 10 23:35:20 2023 -0400 @@ -87,6 +87,7 @@ body > .navigation { margin-left: -14em; + margin-inline-start: -14em; width: 14em; float: left; } @@ -241,6 +242,17 @@ table.footnote { font-size: calc(1em - 1pt); + margin-block-start: 1em; + position: relative +} + +table.footnote::before { + border: 1px solid black; + content: ""; + left: 0; + position: absolute; + top: 0; + width: 25%; } td {
