5b3844b196
Styling was a bit stale, so I ovehauled them to use native CSS, eliminating the need for pre-processors. The overall framework was old and convoluted so that needed to be updated to streamline how styles are being applied. There's still some work to do but the base is so much cleaner now.
30 lines
338 B
CSS
30 lines
338 B
CSS
:root {
|
|
--base-type: helvetica, arial, sans-serif;
|
|
--mono-type: "Lucida Console", monaco, monospace;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
color: var(--white);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
font-weight: 700;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.8em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.5em;
|
|
font-weight: 500;
|
|
}
|
|
|
|
main > article > h1 {
|
|
color: var(--primary);
|
|
}
|