-
Notifications
You must be signed in to change notification settings - Fork 442
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fonts locally instead of with Google Fonts (#58)
- Loading branch information
1 parent
542ecc7
commit 6c144d7
Showing
26 changed files
with
1,865 additions
and
18 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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
@charset "UTF-8"; | ||
|
||
/* Cormorant Garamond */ | ||
@font-face { | ||
font-family: 'Cormorant Garamond'; | ||
font-weight: 500; | ||
font-style: normal; | ||
src: url(asset_path('Cormorant-Garamond-500.eot')); | ||
src: url(asset_path('Cormorant-Garamond-500.eot?#iefix')) format('embedded-opentype'), | ||
local('Cormorant Garamond Medium'), | ||
local('Cormorant-Garamond-500'), | ||
url(asset_path('Cormorant-Garamond-500.woff2')) format('woff2'), | ||
url(asset_path('Cormorant-Garamond-500.woff')) format('woff'), | ||
url(asset_path('Cormorant-Garamond-500.ttf')) format('truetype'), | ||
url(asset_path('Cormorant-Garamond-500.svg#CormorantGaramond')) format('svg'); | ||
} | ||
|
||
/*Lato*/ | ||
@font-face { | ||
font-family: 'Lato'; | ||
font-weight: 300; | ||
font-style: normal; | ||
src: url(asset_path('Lato-300.eot')); | ||
src: url(asset_path('Lato-300.eot?#iefix')) format('embedded-opentype'), | ||
local('Lato Light'), | ||
local('Lato-300'), | ||
url(asset_path('Lato-300.woff2')) format('woff2'), | ||
url(asset_path('Lato-300.woff')) format('woff'), | ||
url(asset_path('Lato-300.ttf')) format('truetype'), | ||
url(asset_path('Lato-300.svg#Lato')) format('svg'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
font-weight: 400; | ||
font-style: normal; | ||
src: url(asset_path('Lato-regular.eot')); | ||
src: url(asset_path('Lato-regular.eot?#iefix')) format('embedded-opentype'), | ||
local('Lato Regular'), | ||
local('Lato-regular'), | ||
url(asset_path('Lato-regular.woff2')) format('woff2'), | ||
url(asset_path('Lato-regular.woff')) format('woff'), | ||
url(asset_path('Lato-regular.ttf')) format('truetype'), | ||
url(asset_path('Lato-regular.svg#Lato')) format('svg'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
font-weight: 700; | ||
font-style: normal; | ||
src: url(asset_path('Lato-700.eot')); | ||
src: url(asset_path('Lato-700.eot?#iefix')) format('embedded-opentype'), | ||
local('Lato Bold'), | ||
local('Lato-700'), | ||
url(asset_path('Lato-700.woff2')) format('woff2'), | ||
url(asset_path('Lato-700.woff')) format('woff'), | ||
url(asset_path('Lato-700.ttf')) format('truetype'), | ||
url(asset_path('Lato-700.svg#Lato')) format('svg'); | ||
} |
Empty file.
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