fixed background
This commit is contained in:
parent
ee0bcec82e
commit
dad45a965c
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue