Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update @font-face declarations in CSS style sheets #15

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions webfonts/leaguegothic-condensed.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
'League Gothic Condensed'
https://www.theleagueofmoveabletype.com/league-gothic

Copyright (c) 2010, Caroline Hadilaksono & Micah Rich
<caroline@hadilaksono>, <[email protected]>,
with Reserved Font Name: "League Gothic".

This Font Software is licensed under the SIL Open Font License, Version 1.1.
http://scripts.sil.org/OFL
*/
@font-face {
font-family: 'League Gothic Condensed';
font-style: normal; /* Roman (Regular) */
src: url('leaguegothic-condensed-regular-webfont.eot');
src: url('leaguegothic-condensed-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('leaguegothic-condensed-regular-webfont.woff') format('woff'),
url('leaguegothic-condensed-regular-webfont.ttf') format('truetype'),
url('leaguegothic-condensed-regular-webfont.svg#league_gothic_condensedRg') format('svg');
}

@font-face {
font-family: 'League Gothic Condensed';
font-style: italic;
src: url('leaguegothic-condensed-italic-webfont.eot');
src: url('leaguegothic-condensed-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('leaguegothic-condensed-italic-webfont.woff') format('woff'),
url('leaguegothic-condensed-italic-webfont.ttf') format('truetype'),
url('leaguegothic-condensed-italic-webfont.svg#league_gothic_condensed_itaRg') format('svg');
}
58 changes: 58 additions & 0 deletions webfonts/leaguegothic.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*
'League Gothic'
https://www.theleagueofmoveabletype.com/league-gothic

Copyright (c) 2010, Caroline Hadilaksono & Micah Rich
<caroline@hadilaksono>, <[email protected]>,
with Reserved Font Name: "League Gothic".

This Font Software is licensed under the SIL Open Font License, Version 1.1.
http://scripts.sil.org/OFL
*/
@font-face {
font-family: 'League Gothic';
font-style: normal; /* Roman (Regular) */
src: url('leaguegothic-regular-webfont.eot');
src: url('leaguegothic-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('leaguegothic-regular-webfont.woff') format('woff'),
url('leaguegothic-regular-webfont.ttf') format('truetype'),
url('leaguegothic-regular-webfont.svg#league_gothicregular') format('svg');
}

@font-face {
font-family: 'League Gothic';
font-style: italic;
src: url('leaguegothic-italic-webfont.eot');
src: url('leaguegothic-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('leaguegothic-italic-webfont.woff') format('woff'),
url('leaguegothic-italic-webfont.ttf') format('truetype'),
url('leaguegothic-italic-webfont.svg#league_gothic_italicregular') format('svg');
}

/*
Note: font-stretch support is currently EXPERIMENTAL in browsers (2013).
For cross-browser support, use the alternate family 'League Gothic Condensed'
defined in a separate style sheet.
*/

@font-face {
font-family: 'League Gothic';
font-stretch: condensed;
font-style: normal; /* Roman (Regular) */
src: url('leaguegothic-condensed-regular-webfont.eot');
src: url('leaguegothic-condensed-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('leaguegothic-condensed-regular-webfont.woff') format('woff'),
url('leaguegothic-condensed-regular-webfont.ttf') format('truetype'),
url('leaguegothic-condensed-regular-webfont.svg#league_gothic_condensedRg') format('svg');
}

@font-face {
font-family: 'League Gothic';
font-stretch: condensed;
font-style: italic;
src: url('leaguegothic-condensed-italic-webfont.eot');
src: url('leaguegothic-condensed-italic-webfont.eot?#iefix') format('embedded-opentype'),
url('leaguegothic-condensed-italic-webfont.woff') format('woff'),
url('leaguegothic-condensed-italic-webfont.ttf') format('truetype'),
url('leaguegothic-condensed-italic-webfont.svg#league_gothic_condensed_itaRg') format('svg');
}
50 changes: 0 additions & 50 deletions webfonts/stylesheet.css

This file was deleted.