mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-10 03:26:38 -05:00
19 lines
665 B
SCSS
19 lines
665 B
SCSS
|
@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 font-sans {
|
||
|
font-family: OpenSans-Regular, Arial, Helvetica, sans-serif;
|
||
|
font-style: normal;
|
||
|
font-weight: normal;
|
||
|
}
|