2016-08-16 19:33:02 -04:00
|
|
|
// Libraries
|
|
|
|
@import "bootstrap-sass/assets/stylesheets/_bootstrap.scss";
|
|
|
|
|
|
|
|
// Core
|
|
|
|
@import "_var";
|
|
|
|
@import "_fonts";
|
|
|
|
|
|
|
|
// Supplementary
|
2016-10-12 23:44:00 -04:00
|
|
|
@import "elements/**/*.scss";
|
|
|
|
@import "pages/**/*.scss";
|
2016-08-16 19:33:02 -04:00
|
|
|
|
|
|
|
//
|
2016-08-19 00:33:12 -04:00
|
|
|
// Main Website Styles
|
2016-08-16 19:33:02 -04:00
|
|
|
//
|
|
|
|
|
|
|
|
* {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
width: 100%;
|
|
|
|
&.no-scroll { overflow-y: hidden; }
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
@include font-sans;
|
|
|
|
width: 100%;
|
|
|
|
padding-top: $nav-height;
|
|
|
|
color: $c-text;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
-webkit-overflow-scrolling: touch;
|
|
|
|
@media (max-width: $grid-float-breakpoint-max) { padding-top: $nav-height-mobile; }
|
|
|
|
}
|