-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
da5224a
commit 3b0a075
Showing
39 changed files
with
109 additions
and
332 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,64 @@ | ||
$font-prefix: '../fonts' !default; | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
font-style: normal; | ||
font-weight: 600; | ||
src: local('IBM Plex Sans SmBld'), | ||
local('IBMPlexSans-SmBld'), | ||
url('#{$font-prefix}/IBMPlexSans-SemiBold.woff2') format('woff2'), | ||
url('#{$font-prefix}/IBMPlexSans-SemiBold.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
font-style: italic; | ||
font-weight: 600; | ||
src: local('IBM Plex Sans SmBld Italic'), | ||
local('IBMPlexSans-SmBldItalic'), | ||
url('#{$font-prefix}/IBMPlexSans-SemiBoldItalic.woff2') format('woff2'), | ||
url('#{$font-prefix}/IBMPlexSans-SemiBoldItalic.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('IBM Plex Sans'), | ||
local('IBMPlexSans'), | ||
url('#{$font-prefix}/IBMPlexSans-Regular.woff2') format('woff2'), | ||
url('#{$font-prefix}/IBMPlexSans-Regular.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Mono'; | ||
font-style: normal; | ||
font-weight: 600; | ||
src: local('IBM Plex Mono SmBld'), | ||
local('IBMPlexMono-SmBld'), | ||
url('#{$font-prefix}/IBMPlexMono-SemiBold.woff2') format('woff2'), | ||
url('#{$font-prefix}/IBMPlexMono-SemiBold.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Mono'; | ||
font-style: italic; | ||
font-weight: 600; | ||
src: local('IBM Plex Mono SmBld Italic'), | ||
local('IBMPlexMono-SmBldItalic'), | ||
url('#{$font-prefix}/IBMPlexMono-SemiBoldItalic.woff2') format('woff2'), | ||
url('#{$font-prefix}/IBMPlexMono-SemiBoldItalic.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Mono'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: local('IBM Plex Mono'), | ||
local('IBMPlexMono'), | ||
url('#{$font-prefix}/IBMPlexMono-Regular.woff2') format('woff2'), | ||
url('#{$font-prefix}/IBMPlexMono-Regular.woff') format('woff'); | ||
} | ||
|
||
$font-family-sans-serif: 'IBM Plex Sans' !default; | ||
$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !default; |
Oops, something went wrong.