2.0 Styling

Added open sans font to repository and switched CSS to load the local files rather than use Google.
This commit is contained in:
Chris Houseknecht
2014-06-18 14:24:28 -04:00
parent 55e1258a5d
commit afd1e516bc
13 changed files with 216 additions and 3 deletions

View File

@@ -28,8 +28,19 @@
@tip-background: #0088CC;
@tip-color: #fff;
@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:400, 600);
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/OpenSans-Regular.ttf);
}
@font-face {
font-family: 'Open Sans';
font-style: bold;
font-weight: 600;
src: url(/static/fonts/OpenSans-Bold.ttf);
}
@import "main-layout.less";
@import "animations.less";