2021-08-20 13:21:20 +02:00
|
|
|
/* Place custom css here. */
|
2023-10-13 19:27:25 +02:00
|
|
|
|
|
|
|
/* Definitionen einrücken */
|
|
|
|
dl dd {
|
|
|
|
margin-left: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notiz-Block/Anmerkungen */
|
|
|
|
.note {
|
2023-10-31 19:28:03 +01:00
|
|
|
/*border: .25em solid #FCAF3E;*/
|
|
|
|
border-radius: 6px;
|
2023-10-13 19:27:25 +02:00
|
|
|
padding: .5em;
|
|
|
|
background:#FCE94F;
|
2023-10-31 19:28:03 +01:00
|
|
|
|
|
|
|
/* from .highlight pre */
|
|
|
|
margin: 27px -32px;
|
|
|
|
padding: 32px;
|
|
|
|
}
|
|
|
|
:is(.dark body) .note {
|
|
|
|
color: #111;
|
|
|
|
}
|
|
|
|
:is(.dark body) .note code {
|
|
|
|
color: #111;
|
|
|
|
}
|
|
|
|
:is(.dark body) .note a:link, :is(.dark body) .note a:visited, :is(.dark body) .note a:hover, :is(.dark body) .note a:active {
|
|
|
|
color: #111;
|
2023-10-13 19:27:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Fußnoten - <https://geekthis.net/post/hugo-footnotes-and-citations/> */
|
|
|
|
a.footnote-ref::before {
|
|
|
|
content: '[';
|
|
|
|
}
|
|
|
|
a.footnote-ref::after {
|
|
|
|
content: ']';
|
|
|
|
}
|
2023-10-31 19:28:03 +01:00
|
|
|
|
|
|
|
/* inline code blocks */
|
|
|
|
.prose :where(code):not(:where([class~=not-prose] *))::before {
|
|
|
|
/*content: "`";*/
|
|
|
|
content: "";
|
|
|
|
}
|
|
|
|
.prose :where(code):not(:where([class~=not-prose] *))::after {
|
|
|
|
/*content: "`";*/
|
|
|
|
content: "";
|
|
|
|
}
|