// Footable Font Face

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