// Glyphicons Font Face

@mixin font-glyphicons($path: "../fonts/") {
    @font-face {
        font-family: 'Glyphicons Halflings';
        src: url('#{$path}glyphicons-halflings-regular.eot');
        src:
            url('#{$path}glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
            url('#{$path}glyphicons-halflings-regular.woff2') format('woff2'),
            url('#{$path}glyphicons-halflings-regular.woff') format('woff'),
            url('#{$path}glyphicons-halflings-regular.ttf') format('truetype'),
            url('#{$path}glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
    }
}

