New CSS rules: .note block and [] around footnote references
This commit is contained in:
parent
d694c6905e
commit
566c096021
1 changed files with 20 additions and 1 deletions
|
@ -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: ']';
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue