blob: 608fe7c2803fd742b3080d8969582d4df01e3db0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@mixin fonts {
@include fonticons;
}
@mixin fonticons {
@include v-font(FontAwesome, fontawesome-webfont);
}
@mixin v-font($font-family, $file-name) {
@font-face {
font-family: '#{$font-family}';
src: url('#{$file-name}.eot');
src: url('#{$file-name}.eot?#iefix') format('embedded-opentype'), url('#{$file-name}.woff') format('woff'), url('#{$file-name}.ttf') format('truetype'), url('#{$file-name}.svg') format('svg');
font-weight: normal;
font-style: normal;
}
.#{$font-family} {
font-family: '#{$font-family}';
font-style: normal;
font-weight: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
}
}
@mixin font($font-family, $file-name) {
@warn "The 'font' mixin is DEPRECATED. You should use the corresponding 'v-font' mixin instead.";
@include v-font($font-family, $file-name);
}
|