first commit

This commit is contained in:
Nico 2023-11-02 15:42:34 +01:00
commit e1362c0d36
25 changed files with 13100 additions and 0 deletions

View file

@ -0,0 +1,45 @@
body {
margin: 0 auto;
padding: var(--space-s-l) var(--space-xs-s);
max-inline-size: 80rem;
font-family: "wotfard", "ArialReplace", Arial, sans-serif;
font-size: var(--size-0);
font-weight: normal;
color: var(--color-green-dark);
background-color: var(--color-yellow-light);
}
a {
color: inherit;
}
a:hover {
text-decoration: none;
}
h1,
.h1 {
font-size: var(--size-4);
}
h2,
.h2 {
font-size: var(--size-2);
}
h3,
.h3 {
font-size: var(--size-1);
font-weight: bold;
}
.flow > * + * {
margin-block-start: var(--space-xs);
}
ul,
ol {
padding-inline-start: 1em;
}
.editorial > * + * {
margin-block-start: var(--space-2xs);
}
.editorial h2 + * {
margin-block-start: var(--space-xs);
}