Skip to content
This repository has been archived by the owner on Mar 28, 2021. It is now read-only.

Commit

Permalink
need relative paths on fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
thraxil committed May 31, 2016
1 parent c38206d commit b6b28de
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions media/sass/_typography.scss
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
/* Import some fonts here */
@font-face {
font-family: "dinlight";
src: url("fonts/DINWeb-Light.eot");
src: url("fonts/DINWeb-Light.woff") format("woff"); }
src: url("/media/css/fonts/DINWeb-Light.eot");
src: url("/media/css/fonts/DINWeb-Light.woff") format("woff"); }
@font-face {
font-family: "dinmed";
src: url("fonts/DINWeb-Medium.eot");
src: url("fonts/DINWeb-Medium.woff") format("woff"); }
src: url("/media/css/fonts/DINWeb-Medium.eot");
src: url("/media/css/fonts/DINWeb-Medium.woff") format("woff"); }

@font-face {
font-family: 'din_alternatebold';
src: url('fonts/din_alternate_bold-webfont.eot');
src: url('fonts/din_alternate_bold-webfont.eot?#iefix') format('embedded-opentype'),
url('fonts/din_alternate_bold-webfont.woff2') format('woff2'),
url('fonts/din_alternate_bold-webfont.woff') format('woff'),
url('fonts/din_alternate_bold-webfont.ttf') format('truetype'),
url('fonts/din_alternate_bold-webfont.svg#din_alternatebold') format('svg');
src: url('/media/css/fonts/din_alternate_bold-webfont.eot');
src: url('/media/css/fonts/din_alternate_bold-webfont.eot?#iefix') format('embedded-opentype'),
url('/media/css/fonts/din_alternate_bold-webfont.woff2') format('woff2'),
url('/media/css/fonts/din_alternate_bold-webfont.woff') format('woff'),
url('/media/css/fonts/din_alternate_bold-webfont.ttf') format('truetype'),
url('/media/css/fonts/din_alternate_bold-webfont.svg#din_alternatebold') format('svg');
font-weight: normal;
font-style: normal;
}
Expand Down

0 comments on commit b6b28de

Please sign in to comment.