From e0ab6fdd946ec05731e47e0a61ffc22d0f3a23f8 Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Thu, 16 Jun 2022 14:18:58 -0700 Subject: [PATCH] Label footnotes as-such --- blog/static/css/custom.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/blog/static/css/custom.css b/blog/static/css/custom.css index 8c251ec..4797d23 100644 --- a/blog/static/css/custom.css +++ b/blog/static/css/custom.css @@ -2,3 +2,19 @@ blockquote { border-left: 5px solid grey; padding-left: 10px; } + +section.footnotes > hr { + /* + Pushes the footnotes down so they do not clash + with the "Footnotes" title, defined below + */ + margin-bottom: 40px; +} + +section.footnotes > *:first-child::before { + content: 'Footnotes'; + font-family: 'Georgia', serif; + margin: 10px 0; + color: #444; + font-size: 25px; +}