getdave / Tanlinell

Boilerplate Wordpress theme for rapid development of new WP themes. Based on the great work of the _s ("Underscore") theme.
GNU General Public License v2.0
6 stars 2 forks source link

Add Font Registeration mixin #260

Closed getdave closed 10 years ago

getdave commented 10 years ago

// Fontface
@mixin register-font( $font-name, $font-path :"../fonts" ) {
    @font-face{
        font-family: $font-name;
        src:url('#{$font-path}/#{$font-name}.eot');
        src:url('#{$font-path}/#{$font-name}.eot?#iefix') format('embedded-opentype'),
            url('#{$font-path}/#{$font-name}.woff') format('woff'),
            url('#{$font-path}/#{$font-name}.ttf') format('truetype'),
            url('#{$font-path}/#{$font-name}.svg##{$font-name}') format('svg');
        font-weight:normal;
        font-style:normal;
    }
}
getdave commented 10 years ago

Added