You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
803 B
18 lines
803 B
6 years ago
|
/* FONT PATH
|
||
|
* -------------------------- */
|
||
|
|
||
|
$fa-version: "4.7.0" !default;
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'FontAwesome';
|
||
|
src: url('[[font:core|fontawesome-webfont.eot]]?v=#{$fa-version}');
|
||
|
src: url('[[font:core|fontawesome-webfont.eot]]?#iefix&v=#{$fa-version}') format('embedded-opentype'),
|
||
|
url('[[font:core|fontawesome-webfont.woff2]]?v=#{$fa-version}') format('woff2'),
|
||
|
url('[[font:core|fontawesome-webfont.woff]]?v=#{$fa-version}') format('woff'),
|
||
|
url('[[font:core|fontawesome-webfont.ttf]]?v=#{$fa-version}') format('truetype'),
|
||
|
url('[[font:core|fontawesome-webfont.svg]]?v=#{$fa-version}#fontawesomeregular') format('svg');
|
||
|
// src: url('[[font:core|FontAwesome.otf]]') format('opentype'); // used when developing fonts
|
||
|
font-weight: normal;
|
||
|
font-style: normal;
|
||
|
}
|