1/* SCSS */
2@mixin font-face($name, $file) {
3 @font-face {
4 font-family: "#{$name}";
5 src: url("../fonts/#{$file}.eot");
6 src: url("../fonts/#{$file}.eot?#iefix") format("embedded-opentype"),
7 url("../fonts/#{$file}.woff") format("woff"),
8 url("../fonts/#{$file}.ttf") format("truetype"),
9 url("../fonts/#{$file}.svg?#webfont") format("svg");
10 }
11}