Huge readability improvements
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Isaac Mills 2024-04-21 18:31:58 -04:00
parent 2b7bcb4122
commit 5f49ea1ed1
Signed by: fnmain
GPG key ID: B67D7410F33A0F61

View file

@ -1,6 +1,7 @@
:root { :root {
--white: white; --white: white;
--black: black; --black: black;
--gap: calc(1rem * 18 / 16);
} }
.w-layout-vflex { .w-layout-vflex {
@ -47,10 +48,35 @@ article {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
margin: 25px;
gap: var(--gap);
} }
article>* { .content section {
display: flex;
flex-direction: column;
gap: var(--gap);
word-wrap: break-word;
margin-top: calc(2 * var(--gap));
margin-bottom: 0;
}
.content img {
margin: var(--gap) 0;
}
.content ul,
.content ol {
display: flex;
flex-direction: column;
padding: 0 0 0 2em;
}
.content * {
line-height: 1.5; line-height: 1.5;
margin: 0 0;
padding: 0 0;
} }
h1 { h1 {
@ -60,8 +86,6 @@ h1 {
} }
p { p {
margin-bottom: 10px;
margin-top: 10px;
font-size: 18px; font-size: 18px;
} }