mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
22 lines
755 B
SCSS
Vendored
22 lines
755 B
SCSS
Vendored
@font-face {
|
|
font-family: "OpenSans-Regular";
|
|
src: url("/fonts/OpenSans-Regular.eot");
|
|
src: url("/fonts/OpenSans-Regular.eot?#iefix") format("embedded-opentype"),
|
|
url("/fonts/OpenSans-Regular.svg#OpenSans-Regular") format("svg"),
|
|
url("/fonts/OpenSans-Regular.woff") format("woff"),
|
|
url("/fonts/OpenSans-Regular.woff2") format("woff2"),
|
|
url("/fonts/OpenSans-Regular.ttf") format("truetype"),
|
|
url("/fonts/OpenSans-Regular.otf") format("opentype");
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@mixin normalize-font {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
@mixin font-sans {
|
|
@include normalize-font;
|
|
font-family: "OpenSans-Regular", Arial, Helvetica, sans-serif;
|
|
}
|