racket/new-racket-web/sass/_fonts.scss
2014-03-01 19:55:51 -07:00

30 lines
1.0 KiB
SCSS

/* Fonts */
// Import Google Web Fonts
@import url(http://fonts.googleapis.com/css?family=Open+Sans:500,400,300,600,700);
@import url(http://fonts.googleapis.com/css?family=Inconsolata);
// Set local icon font
@font-face {
font-family: '#{$icons}';
font-style: normal;
font-weight: 400;
src: url(../fonts/icons/#{$icons}.eot);
src: url('../fonts/icons/#{$icons}.eot?#iefix') format('ie9-skip-eot'),
url('../fonts/icons/#{$icons}.woff') format('woff'),
url('../fonts/icons/#{$icons}.ttf') format('truetype');
}
// To include your own, local copies of fonts, use the following template
//
//@font-face {
// font-family: '#{$some-font-variable}';
// font-style: normal;
// font-weight: 400;
// src: url(../fonts/icons/#{$some-font-variable}.eot);
// src: url('../fonts/icons/#{$some-font-variable}.eot?#iefix') format('ie9-skip-eot'),
// url('../fonts/icons/#{$some-font-variable}.woff') format('woff'),
// url('../fonts/icons/#{$some-font-variable}.ttf') format('truetype');
//}