move material-design font-face to custom.scss

stable
Juanfran 2015-09-16 08:05:21 +02:00
parent 8aa25e6871
commit fa0009c5ed
2 changed files with 14 additions and 14 deletions

View File

@ -4,6 +4,20 @@
// Fezzik: I'm on the Brute Squad.
// Max: [sees Fezzik's size] You are the Brute Squad!
//**************************
//** TYPOGRAPHY
//**************************
@each $font-face in OpenSans-CondLight, OpenSans-Light, opensans-regular, opensans-semibold, taiga {
@font-face {
font-family: '#{$font-face}';
src: url('../fonts/#{$font-face}.eot?#iefix') format('embedded-opentype'),
url('../fonts/#{$font-face}.woff') format('woff'),
url('../fonts/#{$font-face}.ttf') format('truetype'),
url('../fonts/#{$font-face}.svg#{$font-face}') format('svg');
}
}
//*************************
//** LAYOUT
//*************************

View File

@ -34,20 +34,6 @@ $yellow-pear: #ffc107;
$top-icon-color: $white;
$dropdown-color: rgba(darken($primary-dark, 20%), 1);
//**************************
//** TYPOGRAPHY
//**************************
@each $font-face in OpenSans-CondLight, OpenSans-Light, opensans-regular, opensans-semibold, taiga {
@font-face {
font-family: '#{$font-face}';
src: url('../fonts/#{$font-face}.eot?#iefix') format('embedded-opentype'),
url('../fonts/#{$font-face}.woff') format('woff'),
url('../fonts/#{$font-face}.ttf') format('truetype'),
url('../fonts/#{$font-face}.svg#{$font-face}') format('svg');
}
}
// Font Sizes
%xsmall {font-size: .75rem;}
%small {font-size: .9rem;}