diff --git a/CHANGELOG.md b/CHANGELOG.md index 24dd2936..bc04371e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- ### Block styles: Heading Style 'Hero' Font Family Changes + ### Block Styles + The heading styles `Hero` and `Hero Bold` have been adjusted to both use 'Roboto Condensed', mirroring the D7 block style versions + + Resolves #1164 +--- + - ### Adds "University of Colorado Boulder" to the end of page titles This update: - [change] Adds "University of Colorado Boulder" to the end of page titles. It first checks if the site is already called that to prevent this text from being duplicated on the home page. Resolves CuBoulder/tiamat-theme#1188 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..0678b4bd 100644 --- a/css/block/block-styles.css +++ b/css/block/block-styles.css @@ -3,7 +3,12 @@ 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; }