blob: 1ad5ea5f9cb3a442cc61b8106562476afaec1ed7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// font path mixin
.fontPath(@path, @filename){
src: url('@{path}@{filename}.woff2') format('woff2'),
url('@{path}@{filename}.woff') format('woff');
}
@font-path: "fonts/";
@font-face {
font-family: "orbitron-bold";
font-weight: 500;
font-style: normal;
.fontPath(@font-path, "orbitron-bold-webfont");
}
@font-face {
font-family: "Montserrat";
font-weight: 400;
font-style: normal;
.fontPath(@font-path, "Montserrat-Regular");
}
|