move html files

urosm 2024-03-17 16:54:31 +01:00
parent f6a4ec682a
commit 228bd387ac
3 changed files with 24 additions and 2 deletions

View File

@ -15,7 +15,7 @@
--main-gap-v: 0; --main-gap-v: 0;
/* font-derived column width */ /* font-derived column width */
--col-w: clamp(33.33vw, 74ch, 100vw); --col-w: calc(clamp(33.33vw, 74ch, 100vw) - 2ch);
/* colors */ /* colors */
--fg-c: #000000; --fg-c: #000000;
@ -42,11 +42,17 @@
hyphens: auto; hyphens: auto;
} }
*:focus {
outline: var(--link-c) solid 1px;
}
/* root */ /* root */
:root { :root {
color: var(--fg-c); color: var(--fg-c);
background-color: var(--bg-c); background-color: var(--bg-c);
font: var(--font-size)/var(--line-height) var(--font-family); font: var(--font-size)/var(--line-height) var(--font-family);
scrollbar-width: thin;
scrollbar-color: var(--link-c) rgba(0,0,0,0);
} }
/* content sectioning */ /* content sectioning */
@ -60,6 +66,7 @@ h1, h2, h3, h4, h5, h6 {
} }
/* text content */ /* text content */
/*
:is(article :is(blockquote, dl, figure, menu, ol, p, pre, ul, div)) + :is(article :is(blockquote, dl, figure, menu, ol, p, pre, ul, div)) +
:is(article :is(blockquote, dl, figure, menu, ol, p, pre, ul, div)) { :is(article :is(blockquote, dl, figure, menu, ol, p, pre, ul, div)) {
margin-block-start: var(--v-un); margin-block-start: var(--v-un);
@ -99,10 +106,17 @@ h1, h2, h3, h4, h5, h6 {
:is(article :is(address, article, aside, footer, header, hgroup, nav, section, search)) + :is(article :is(address, article, aside, footer, header, hgroup, nav, section, search)) +
:is(article :is(h1, h2, h3, h4, h5, h6)) { :is(article :is(h1, h2, h3, h4, h5, h6)) {
}*/
article :is(h1, h2, h3, h4, h5, h6) {
margin-block-start: calc(2 * var(--v-un)); margin-block-start: calc(2 * var(--v-un));
margin-block-end: var(--v-un); margin-block-end: var(--v-un);
} }
article :is(blockquote, dl, figure, menu, ol, p, pre, ul, div) {
margin-block-start: var(--v-un);
}
blockquote { blockquote {
margin-inline: calc(4 * var(--h-un)); margin-inline: calc(4 * var(--h-un));
} }
@ -170,7 +184,15 @@ body>main {
overflow-x: scroll; overflow-x: scroll;
} }
body>main>article { body>main>* {
overflow-y: scroll; overflow-y: scroll;
padding: var(--v-un) var(--h-un); padding: var(--v-un) var(--h-un);
} }
/* fenced divs */
div.horizontal {
display: grid;
grid-auto-flow: column;
grid-auto-columns: 100%;
overflow-x: scroll;
}

View File

Before

Width:  |  Height:  |  Size: 272 B

After

Width:  |  Height:  |  Size: 272 B