Add OpenSans Regular as the default font

This commit is contained in:
Kevin MacMartin 2016-01-03 19:11:48 -05:00
parent 392ffaf572
commit 4eb417b357
6 changed files with 1800 additions and 0 deletions

Binary file not shown.

File diff suppressed because it is too large Load diff

After

Width:  |  Height:  |  Size: 248 KiB

Binary file not shown.

Binary file not shown.

View file

@ -1,6 +1,7 @@
// Core
@import "bootstrap";
@import "var";
@import "fonts";
// Base
@import "auth";
@ -31,6 +32,7 @@ body {
* {
outline: none !important;
.font_sans;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

9
resources/assets/less/fonts.less vendored Normal file
View file

@ -0,0 +1,9 @@
@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.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
.font_sans { font-family: OpenSans-Regular, Arial, Helvetica, sans-serif; }