2015-12-12 02:21:43 -05:00
|
|
|
// Core
|
2016-01-26 23:20:08 -05:00
|
|
|
@import "bootstrap/less/bootstrap";
|
2015-07-08 03:34:58 -04:00
|
|
|
@import "var";
|
2016-01-03 19:11:48 -05:00
|
|
|
@import "fonts";
|
2015-12-12 02:21:43 -05:00
|
|
|
|
|
|
|
// Supplementary
|
2015-12-01 01:07:03 -05:00
|
|
|
@import "elements/**";
|
2016-01-03 19:08:53 -05:00
|
|
|
@import "pages/**";
|
2015-07-08 03:34:58 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
| Main Styles
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2016-01-26 23:20:08 -05:00
|
|
|
html.no-scroll { overflow-y: hidden; }
|
|
|
|
|
2015-07-08 03:34:58 -04:00
|
|
|
body {
|
2016-03-19 16:43:21 -04:00
|
|
|
.font_sans;
|
2015-07-08 03:34:58 -04:00
|
|
|
color: @c_text;
|
2016-01-28 22:28:05 -05:00
|
|
|
padding-top: @nav_height;
|
|
|
|
@media (max-width: @grid-float-breakpoint-max) { padding-top: @mobile_nav_height; }
|
2015-07-08 03:34:58 -04:00
|
|
|
}
|
|
|
|
|
2015-09-11 17:33:33 -04:00
|
|
|
* {
|
|
|
|
outline: none !important;
|
2015-10-10 01:07:55 -04:00
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
2015-09-11 17:33:33 -04:00
|
|
|
}
|