46 lines
701 B
CSS
46 lines
701 B
CSS
|
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);
|
||
|
}
|