From cd1ac71ba5ccc7e8e327dd83b68fc3e81e25df86 Mon Sep 17 00:00:00 2001 From: David Runge Date: Sun, 3 Dec 2023 20:57:31 +0100 Subject: [PATCH] Add CSS to separate footnotes more clearly from sections in HTML output Fixes https://codeberg.org/openpgp/notes/issues/164 Signed-off-by: David Runge --- book/source/_static/html/css/custom.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/book/source/_static/html/css/custom.css b/book/source/_static/html/css/custom.css index a2bd3de..ec0eaff 100644 --- a/book/source/_static/html/css/custom.css +++ b/book/source/_static/html/css/custom.css @@ -46,3 +46,12 @@ span.std-term { color: rgb(62, 67, 73); border-bottom: 1px dotted rgb(62, 67, 73); } + +/* +Footnote list +*/ +aside.footnote-list { + border-top: 1px solid black; + margin-top: 2em; + padding-top: 2em; +} \ No newline at end of file