fixed background
This commit is contained in:
parent
ee0bcec82e
commit
dad45a965c
|
@ -116,6 +116,9 @@ body {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
z-index: -3;
|
z-index: -3;
|
||||||
|
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
|
||||||
color: var(--background-text);
|
color: var(--background-text);
|
||||||
opacity: 0.3;
|
opacity: 0.3;
|
||||||
|
|
||||||
|
@ -124,7 +127,7 @@ body {
|
||||||
font-size: 1.5em;
|
font-size: 1.5em;
|
||||||
|
|
||||||
transform-origin: center center;
|
transform-origin: center center;
|
||||||
transform: rotate(-45deg);
|
transform: translate(-50%, -50%) rotate(-45deg);
|
||||||
|
|
||||||
align-content: center;
|
align-content: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
#content>.content {
|
#content>.content {
|
||||||
font-size: 1.5em;
|
font-size: 1.2em;
|
||||||
max-width: 75ch;
|
max-width: 75ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -24,6 +24,22 @@
|
||||||
text-justify: auto;
|
text-justify: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content h2::before {
|
||||||
|
content: "> ";
|
||||||
|
}
|
||||||
|
|
||||||
|
#content h3::before {
|
||||||
|
content: ">> ";
|
||||||
|
}
|
||||||
|
|
||||||
|
#content h3 {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content h4::before {
|
||||||
|
content: ">>> ";
|
||||||
|
}
|
||||||
|
|
||||||
.toc {
|
.toc {
|
||||||
background: var(--background-text);
|
background: var(--background-text);
|
||||||
border-radius: var(--radius);
|
border-radius: var(--radius);
|
||||||
|
|
Loading…
Reference in a new issue