From 566c0960219fa80b518c79b87442a6b50fc37268 Mon Sep 17 00:00:00 2001 From: Malte Bublitz Date: Fri, 13 Oct 2023 19:27:25 +0200 Subject: [PATCH] New CSS rules: .note block and [] around footnote references --- assets/custom.css | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/assets/custom.css b/assets/custom.css index 6dd256c..ef97dde 100644 --- a/assets/custom.css +++ b/assets/custom.css @@ -1,2 +1,21 @@ /* Place custom css here. */ -dl dd {margin-left: 2em;} + +/* Definitionen einrücken */ +dl dd { + margin-left: 2em; +} + +/* Notiz-Block/Anmerkungen */ +.note { + border: .25em solid #FCAF3E; + padding: .5em; + background:#FCE94F; +} + +/* Fußnoten - */ +a.footnote-ref::before { + content: '['; +} +a.footnote-ref::after { + content: ']'; +}