Files
ionic-framework/ionic/fonts/roboto.scss
Adam Bradley 4aab881b01 roboto font
2015-08-13 00:27:49 -05:00

38 lines
1.2 KiB
SCSS

/**
Roboto Font
Google
Apache License, version 2.0
http://www.apache.org/licenses/LICENSE-2.0.html
*/
$roboto-font-path: "../fonts" !default;
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url(#{$roboto-font-path}/roboto-light.ttf) format('truetype'), url(#{$roboto-font-path}/roboto-light.woff) format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(#{$roboto-font-path}/roboto-regular.ttf) format('truetype'), url(#{$roboto-font-path}/roboto-regular.woff) format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 500;
src: local('Roboto Medium'), local('Roboto-Medium'), url(#{$roboto-font-path}/roboto-medium.ttf) format('truetype'), url(#{$roboto-font-path}/roboto-medium.woff) format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url(#{$roboto-font-path}/roboto-bold.ttf) format('truetype'), url(#{$roboto-font-path}/roboto-bold.woff) format('woff');
}