Add line-heights and missing main-title styling

This commit is contained in:
lilith 2025-03-06 02:05:50 +01:00
commit bacc3b9bc9
Signed by: lilith
SSH key fingerprint: SHA256:WMHGS60rozMrHkA/VT+Ole85sPCLZ190yemdzY68WJo
8 changed files with 87 additions and 27 deletions

View file

@ -91,6 +91,11 @@
--color-light-accent-3: #932f0a;
--color-cmyk-primary: var(--color-dark-primary);
--color-cmyk-secondary: var(--color-dark-secondary);
--line-height-loose: 1.4;
--line-height-relaxed: 1.3;
--line-height-base: 1.2;
--line-height-snug: 1.1;
--line-height-tight: 1;
--text-xs: 0.75rem;
--text-sm: 0.875rem;
--text-base: 1rem;
@ -100,6 +105,8 @@
--text-3xl: 1.875rem;
--text-4xl: 2.25rem;
--text-5xl: 3rem;
--text-6xl: 3.75rem;
--text-7xl: 4.5rem;
--container-3xs: 16rem;
--container-2xs: 18rem;
--container-xs: 20rem;
@ -433,8 +440,10 @@ body {
background-color: var(--color-background);
color: var(--color-foreground);
font-family: "Athiti", ui-sans, sans-serif;
line-height: var(--line-height-base);
}
.main-title,
h1,
.h1,
h2,
@ -452,40 +461,45 @@ h6,
margin: 1rem 0;
}
.main-title {
font-size: var(--text-7xl);
line-height: var(--line-height-base);
}
h1,
.h1 {
font-size: var(--text-5xl);
line-height: var();
line-height: var(--line-height-base);
}
h2,
.h2 {
font-size: var(--text-4xl);
line-height: var();
line-height: var(--line-height-base);
}
h3,
.h3 {
font-size: var(--text-3xl);
line-height: var();
line-height: var(--line-height-base);
}
h4,
.h4 {
font-size: var(--text-2xl);
line-height: var();
line-height: var(--line-height-loose);
}
h5,
.h5 {
font-size: var(--text-xl);
line-height: var();
line-height: var(--line-height-loose);
}
h6,
.h6 {
font-size: var(--text-lg);
line-height: var();
line-height: var(--line-height-loose);
}
pre {