update `public_html` static files

master
urosm 2024-05-04 18:55:46 +02:00
parent 218ba93052
commit e67c7c96aa
1 changed files with 23 additions and 7 deletions

View File

@ -1,7 +1,7 @@
/* variables */
:root {
--font-size: 12pt;
--line-height: 1.25;
--line-height: 1.625;
--font-family: monospace;
/* font-derived column width */
@ -193,20 +193,36 @@ td {
/* layout */
main {
height: 100vh;
display: grid;
grid-auto-flow: column;
grid-auto-columns: var(--col-w);
overflow-x: scroll;
grid-template-columns: auto 1fr;
}
main>* {
main>nav {
padding: 1rlh 1ch;
overflow-y: scroll;
}
main>nav>a {
display: inline-block;
margin-block-start: 2rlh;
}
/* div#posts */
div#posts {
height: 100vh;
display: grid;
grid-auto-flow: column;
grid-auto-columns: var(--col-w);
overflow-x: scroll;
}
/* article.post */
article.post {
padding: 1rlh 1ch;
overflow-y: scroll;
}
article.post>header,
article.post>nav {
margin-block: 1rlh;