-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: switch to IBM Plex font family
- Loading branch information
Federico Zivolo
committed
Dec 7, 2018
1 parent
746a385
commit 7745489
Showing
32 changed files
with
84 additions
and
52 deletions.
There are no files selected for viewing
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 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,10 @@ | ||
# IBM Plex Sans and IMB Plex Serif | ||
|
||
The font files have been downloaded from [Google Fonts](https://fonts.google.com/?selection.family=IBM+Plex+Sans|IBM+Plex+Serif:400,400i,700,700i&query=IBM+plex+se) | ||
and converted into webfonts with [FontSquirrel](https://www.fontsquirrel.com) using the | ||
"optimal" setting. | ||
|
||
The `ibmplex.css` file has been created manually to make the "IBM Plex Sans" and "IBM Plex Serif" | ||
fonts available as a single font with regular, italic, bold, and bold-italic as supported styles. | ||
|
||
You can directly import the CSS file to make the font available in your app. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
font-weight: 400; | ||
font-style: normal; | ||
src: url('ibmplexsans-regular-webfont.woff2') format('woff2'), | ||
url('ibmplexsans-regular-webfont.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
font-weight: 400; | ||
font-style: italic; | ||
src: url('ibmplexsans-italic-webfont.woff2') format('woff2'), | ||
url('ibmplexsans-italic-webfont.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
font-weight: 700; | ||
font-style: normal; | ||
src: url('ibmplexsans-bold-webfont.woff2') format('woff2'), | ||
url('ibmplexsans-bold-webfont.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Sans'; | ||
font-weight: 700; | ||
font-style: italic; | ||
src: url('ibmplexsans-bolditalic-webfont.woff2') format('woff2'), | ||
url('ibmplexsans-bolditalic-webfont.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Serif'; | ||
font-weight: 400; | ||
font-style: normal; | ||
src: url('ibmplexserif-regular-webfont.woff2') format('woff2'), | ||
url('ibmplexserif-regular-webfont.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Serif'; | ||
font-weight: 400; | ||
font-style: italic; | ||
src: url('ibmplexserif-italic-webfont.woff2') format('woff2'), | ||
url('ibmplexserif-italic-webfont.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Serif'; | ||
font-weight: 700; | ||
font-style: normal; | ||
src: url('ibmplexserif-bold-webfont.woff2') format('woff2'), | ||
url('ibmplexserif-bold-webfont.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'IBM Plex Serif'; | ||
font-weight: 700; | ||
font-style: italic; | ||
src: url('ibmplexserif-bolditalic-webfont.woff2') format('woff2'), | ||
url('ibmplexserif-bolditalic-webfont.woff') format('woff'); | ||
} |
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