From 3760850040ce22183f9a247406ba3c207900690a Mon Sep 17 00:00:00 2001 From: Jared He <66887902+jaredjhe@users.noreply.github.com> Date: Thu, 1 Sep 2022 01:29:37 -0400 Subject: [PATCH] Scale font sizes by 0.8 (Figma design was too large) --- pages/_app.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/_app.css b/pages/_app.css index 9e76de7..e83ac10 100644 --- a/pages/_app.css +++ b/pages/_app.css @@ -71,25 +71,25 @@ body { /* Major section headings (e.g. About the Programs) */ h1 { - font-size: calc(60rem / 16); + font-size: calc(48rem / 16); color: var(--primary-heading); } /* Page titles (e.g. Demographics) */ h2 { - font-size: calc(70rem / 16); + font-size: calc(56rem / 16); color: var(--primary-accent-lighter); } /* Minor section headings & questions (e.g. What Program Are You In?) */ h3 { - font-size: calc(45rem / 16); + font-size: calc(36rem / 16); color: var(--secondary-heading); } /* Titles within paragraphs (e.g. About the Programs -> Computer Science)*/ h4 { - font-size: calc(30rem / 16); + font-size: calc(24rem / 16); color: var(--secondary-heading); } @@ -99,7 +99,7 @@ h6 { } p { - font-size: calc(28rem / 16); + font-size: calc(22rem / 16); color: var(--primary-text) }