fixed background

This commit is contained in:
Snorre Ettrup Altschul 2025-03-27 22:51:47 +01:00
parent ee0bcec82e
commit dad45a965c
2 changed files with 21 additions and 2 deletions

View file

@ -116,6 +116,9 @@ body {
position: fixed;
z-index: -3;
top: 50%;
left: 50%;
color: var(--background-text);
opacity: 0.3;
@ -124,7 +127,7 @@ body {
font-size: 1.5em;
transform-origin: center center;
transform: rotate(-45deg);
transform: translate(-50%, -50%) rotate(-45deg);
align-content: center;
text-align: center;

View file

@ -15,7 +15,7 @@
}
#content>.content {
font-size: 1.5em;
font-size: 1.2em;
max-width: 75ch;
}
@ -24,6 +24,22 @@
text-justify: auto;
}
#content h2::before {
content: "> ";
}
#content h3::before {
content: ">> ";
}
#content h3 {
text-decoration: underline;
}
#content h4::before {
content: ">>> ";
}
.toc {
background: var(--background-text);
border-radius: var(--radius);