-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update font stacks and type scale. (#375)
- Fix #342 - Replace Open Sans with Inter - Change font variable names - open-sans → font-base - zilla-slab → font-mozilla - Add Firefox Sharp Sans font stack and font-firefox mixin - Update typography scale - Decrease the font-size of one or two component titles - Add off-black typeography to mzp-t-firefox themes
- Loading branch information
1 parent
0eafaaa
commit 685229b
Showing
42 changed files
with
185 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# HEAD | ||
|
||
# Features | ||
|
||
* **css:** (breaking) Implement Updated Font Stacks (#342) | ||
|
||
# 6.0.1 | ||
|
||
# Bug Fixes | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ button, | |
input, | ||
select, | ||
textarea { | ||
@include open-sans; | ||
@include font-base; | ||
@include text-body-md; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// This Source Code Form is subject to the terms of the Mozilla Public | ||
// License, v. 2.0. If a copy of the MPL was not distributed with this | ||
// file, You can obtain one at http://mozilla.org/MPL/2.0/. | ||
|
||
|
||
@font-face { | ||
font-display: swap; | ||
font-family: Inter; | ||
font-style: normal; | ||
font-weight: normal; | ||
src: url('#{$font-path}/Inter-Regular.woff2') format('woff2'), | ||
url('#{$font-path}/Inter-Regular.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-display: swap; | ||
font-family: Inter; | ||
font-style: normal; | ||
font-weight: bold; | ||
src: url('#{$font-path}/Inter-Bold.woff2') format('woff2'), | ||
url('#{$font-path}/Inter-Bold.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-display: swap; | ||
font-family: Inter; | ||
font-style: italic; | ||
font-weight: normal; | ||
src: url('#{$font-path}/Inter-Italic.woff2') format('woff2'), | ||
url('#{$font-path}/Inter-Italic.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-display: swap; | ||
font-family: Inter; | ||
font-style: italic; | ||
font-weight: bold; | ||
src: url('#{$font-path}/Inter-BoldItalic.woff2') format('woff2'), | ||
url('#{$font-path}/Inter-BoldItalic.woff') format('woff'); | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.