24 lines
556 B
CSS
Executable file
24 lines
556 B
CSS
Executable file
:root {
|
|
--headings-font-family: banquise, monospace;
|
|
}
|
|
|
|
h1 {
|
|
font-family: var(--headings-font-family);
|
|
font-size: var(--s3);
|
|
letter-spacing: var(--letter-spacing-medium);
|
|
line-height: var(--line-height-compact);
|
|
}
|
|
|
|
h2 {
|
|
font-family: var(--headings-font-family);
|
|
font-size: var(--s2);
|
|
letter-spacing: var(--letter-spacing-small);
|
|
line-height: var(--line-height-compact);
|
|
}
|
|
|
|
h3 {
|
|
font-family: var(--headings-font-family);
|
|
font-size: var(--s1);
|
|
letter-spacing: var(--letter-spacing-small);
|
|
line-height: var(--line-height-compact);
|
|
}
|