Skip to content

Commit

Permalink
fix(path): changed fonts folder without updating path (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
lallmon authored Apr 12, 2017
1 parent c542630 commit ba42c86
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
**In Development:**

Add:
`<link rel="stylesheet" href="https://rawgit.com/fenderdigital/fender-web-fonts/master/dist/fonts/fonts.min.css">` to the `head` of your project
`<link rel="stylesheet" href="https://rawgit.com/fenderdigital/fender-web-fonts/master/dist/fonts.min.css">` to the `head` of your project

**In Production:**

Add: `<link rel="stylesheet" href="https://cdn.rawgit.com/fenderdigital/fender-web-fonts/1.0.1/dist/fonts/fonts.min.css">` to the `head` of your project
Add: `<link rel="stylesheet" href="https://cdn.rawgit.com/fenderdigital/fender-web-fonts/1.0.2/dist/fonts/fonts.min.css">` to the `head` of your project

## Usage

Class based usage as part of the Fender Design System. Check out the [Typography Docs](https://fenderdigital.github.io/tachyons/typefaces/)
Class based usage as part of the Fender Design System. Check out the [Typography Docs](https://fenderdigital.github.io/css-utilities/typefaces/)
10 changes: 5 additions & 5 deletions dist/fonts.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/fonts.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/fonts.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
@font-face {
font-family: 'SourceSansPro-Regular';
src: url(./SourceSansPro-Regular.otf) format("opentype");
src: url(fonts/SourceSansPro-Regular.otf) format("opentype");
}

@font-face {
font-family: 'SourceSansPro-Bold';
src: url(./SourceSansPro-Bold.otf) format("opentype");
src: url(fonts/SourceSansPro-Bold.otf) format("opentype");
}

@font-face {
font-family: 'SourceSansPro-It';
src: url(./SourceSansPro-It.otf) format("opentype");
src: url(fonts/SourceSansPro-It.otf) format("opentype");
}

@font-face {
font-family: 'FuturaPT-Book';
font-variant-ligatures: none;
src: url(./ParaType-FuturaPTBook.otf) format("opentype");
src: url(fonts/ParaType-FuturaPTBook.otf) format("opentype");
}

@font-face {
font-family: 'FuturaPT-Heavy';
font-variant-ligatures: none;
src: url(./ParaType-FuturaPTHeavy.otf) format("opentype");
src: url(fonts/ParaType-FuturaPTHeavy.otf) format("opentype");
}

.source-sans {
Expand Down

0 comments on commit ba42c86

Please sign in to comment.