From 59c5aef8403e9e5f8d5afc9ede6a543bc36f85ca Mon Sep 17 00:00:00 2001 From: Pat Date: Mon, 12 Aug 2024 09:34:18 -0600 Subject: [PATCH 1/2] Block styles: Hero style font-family --- boulder_base.libraries.yml | 2 +- css/block/block-styles.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/boulder_base.libraries.yml b/boulder_base.libraries.yml index 9785a01e..2c0be7d1 100644 --- a/boulder_base.libraries.yml +++ b/boulder_base.libraries.yml @@ -5,7 +5,7 @@ ucb-global: css/bootstrap/bootstrap.min.css: {} css/layout.css: {} theme: - https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:wght@400;500;700&display=swap: { type: external } + https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&family=Roboto:wght@400;500;700&display=swap: { type: external } css/style-responsive.css: {} css/styleguide/global.css: {} css/styleguide/branding.css: {} diff --git a/css/block/block-styles.css b/css/block/block-styles.css index 6556cf68..b7966a05 100644 --- a/css/block/block-styles.css +++ b/css/block/block-styles.css @@ -5,6 +5,7 @@ .block-title.hero, .block-title.supersize { font-weight: normal; + font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif; ; } .block-title.strong, .block-title.bold { From f18828832ebfb8fc84f61f606c016f3b65b614b1 Mon Sep 17 00:00:00 2001 From: Pat Date: Mon, 12 Aug 2024 09:41:45 -0600 Subject: [PATCH 2/2] Fix supersize --- css/block/block-styles.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/css/block/block-styles.css b/css/block/block-styles.css index b7966a05..0678b4bd 100644 --- a/css/block/block-styles.css +++ b/css/block/block-styles.css @@ -3,11 +3,15 @@ display: flex; } -.block-title.hero, .block-title.supersize { +.block-title.hero { font-weight: normal; font-family: "Roboto Condensed", "Helvetica Neue", Helvetica, Arial, sans-serif; ; } +.block-title.supersize{ + font-weight: normal; +} + .block-title.strong, .block-title.bold { font-weight: bold; }