-
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 better support for local fonts and update documentation (#60)
- Loading branch information
1 parent
6c144d7
commit 25898f3
Showing
43 changed files
with
135 additions
and
1,900 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
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
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,63 @@ | ||
// ============================================================================= | ||
// Fonts | ||
// ============================================================================= | ||
|
||
@charset "UTF-8"; | ||
|
||
// Cormorant Garamond | ||
// ============================================================================= | ||
|
||
@font-face { | ||
font-family: 'Cormorant Garamond'; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: url(asset_path('cormorant-garamond/Cormorant-Garamond-700.eot')); | ||
src: url(asset_path('cormorant-garamond/Cormorant-Garamond-700.eot?#iefix')) format('embedded-opentype'), | ||
local('Cormorant Garamond Medium'), | ||
local('Cormorant-Garamond-600'), | ||
url(asset_path('cormorant-garamond/Cormorant-Garamond-700.woff2')) format('woff2'), | ||
url(asset_path('cormorant-garamond/Cormorant-Garamond-700.woff')) format('woff'), | ||
url(asset_path('cormorant-garamond/Cormorant-Garamond-700.ttf')) format('truetype'), | ||
} | ||
|
||
// Lato | ||
// ============================================================================= | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 300; | ||
src: url(asset_path('lato/Lato-300.eot')); | ||
src: url(asset_path('lato/Lato-300.eot?#iefix')) format('embedded-opentype'), | ||
local('Lato Light'), | ||
local('Lato-300'), | ||
url(asset_path('lato/Lato-300.woff2')) format('woff2'), | ||
url(asset_path('lato/Lato-300.woff')) format('woff'), | ||
url(asset_path('lato/Lato-300.ttf')) format('truetype'), | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: url(asset_path('lato/Lato-regular.eot')); | ||
src: url(asset_path('lato/Lato-regular.eot?#iefix')) format('embedded-opentype'), | ||
local('Lato Regular'), | ||
local('Lato-regular'), | ||
url(asset_path('lato/Lato-regular.woff2')) format('woff2'), | ||
url(asset_path('lato/Lato-regular.woff')) format('woff'), | ||
url(asset_path('lato/Lato-regular.ttf')) format('truetype'), | ||
} | ||
|
||
@font-face { | ||
font-family: 'Lato'; | ||
font-style: normal; | ||
font-weight: 700; | ||
src: url(asset_path('lato/Lato-700.eot')); | ||
src: url(asset_path('lato/Lato-700.eot?#iefix')) format('embedded-opentype'), | ||
local('Lato Bold'), | ||
local('Lato-700'), | ||
url(asset_path('lato/Lato-700.woff2')) format('woff2'), | ||
url(asset_path('lato/Lato-700.woff')) format('woff'), | ||
url(asset_path('lato/Lato-700.ttf')) format('truetype'), | ||
} |
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 |
---|---|---|
|
@@ -25,6 +25,7 @@ | |
} | ||
|
||
// Modifier class for 16:9 aspect ratio | ||
|
||
.embed-responsive-16by9 { | ||
padding-bottom: 56.25%; | ||
} |
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
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
Oops, something went wrong.