Fix the font references

openid
Marcin Kulik 11 years ago
parent 6c326fb222
commit 1696dad7d0

@ -2,29 +2,29 @@
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 300;
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url("fonts/SourceSansPro-Light.ttf") format('truetype');
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url("<%= asset_path("SourceSansPro-Light.ttf") %>") format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url("fonts/SourceSansPro-Regular.ttf") format('truetype');
src: local('Source Sans Pro'), local('SourceSansPro-Regular'), url("<%= asset_path("SourceSansPro-Regular.ttf") %>") format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 600;
src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url("fonts/SourceSansPro-Semibold.ttf") format('truetype');
src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url('<%= asset_path("SourceSansPro-Semibold.ttf") %>') format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 700;
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url("fonts/SourceSansPro-Bold.ttf") format('truetype');
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url('<%= asset_path("SourceSansPro-Bold.ttf") %>') format('truetype');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: italic;
font-weight: 400;
src: local('Source Sans Pro Italic'), local('SourceSansPro-It'), url("fonts/SourceSansPro-Italic.ttf") format('truetype');
src: local('Source Sans Pro Italic'), local('SourceSansPro-It'), url('<%= asset_path("SourceSansPro-Italic.ttf") %>') format('truetype');
}

@ -2385,8 +2385,8 @@ input[type="button"].btn-block {
@font-face {
font-family: 'Glyphicons Halflings';
src: url('/assets/glyphicons-halflings-regular.eot');
src: url('/assets/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/assets/glyphicons-halflings-regular.woff') format('woff'), url('/assets/glyphicons-halflings-regular.ttf') format('truetype'), url('/assets/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
src: url('<%= asset_path('glyphicons-halflings-regular.eot') %>');
src: url('<%= asset_path('glyphicons-halflings-regular.eot?#iefix') %>') format('embedded-opentype'), url('<%= asset_path('glyphicons-halflings-regular.woff') %>') format('woff'), url('<%= asset_path('glyphicons-halflings-regular.ttf') %>') format('truetype'), url('<%= asset_path('glyphicons-halflings-regular.svg#glyphicons-halflingsregular') %>') format('svg');
}
.glyphicon {
Loading…
Cancel
Save