Standardize font sizes
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Jared He 2022-08-31 23:21:29 -04:00
parent b586d52f72
commit 4e79ac5de2
1 changed files with 27 additions and 4 deletions

View File

@ -68,18 +68,41 @@ body {
margin: 0;
}
h1,
h2 {
/* Major section headings (e.g. About the Programs) */
h1 {
font-size: calc(60rem / 16);
color: var(--primary-heading);
}
h3,
h4,
/* Page titles (e.g. Demographics) */
h2 {
font-size: calc(70rem / 16);
color: var(--primary-accent-lighter);
}
/* Minor section headings & questions (e.g. What Program Are You In?) */
h3 {
font-size: calc(45rem / 16);
color: var(--secondary-heading);
}
/* Titles within paragraphs (e.g. About the Programs -> Computer Science)*/
h4 {
font-size: calc(30rem / 16);
color: var(--secondary-heading);
}
h5,
h6 {
color: var(--secondary-heading);
}
p {
font-size: calc(28rem / 16);
color: var(--primary-text)
}
a {
color: var(--link);
text-decoration: none;