1
0
Fork 0

New CSS rules: .note block and [] around footnote references

This commit is contained in:
Malte Bublitz 2023-10-13 19:27:25 +02:00
parent d694c6905e
commit 566c096021
Signed by: malte70
GPG Key ID: 605DA5C729F9C184
1 changed files with 20 additions and 1 deletions

View File

@ -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 - <https://geekthis.net/post/hugo-footnotes-and-citations/> */
a.footnote-ref::before {
content: '[';
}
a.footnote-ref::after {
content: ']';
}