mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-23 00:14:10 -05:00
37 lines
650 B
SCSS
37 lines
650 B
SCSS
|
// Libraries
|
||
|
@import "bootstrap-sass/assets/stylesheets/_bootstrap.scss";
|
||
|
|
||
|
// Core
|
||
|
@import "_var";
|
||
|
@import "_fonts";
|
||
|
|
||
|
// Supplementary
|
||
|
@import "elements/**";
|
||
|
@import "pages/**";
|
||
|
|
||
|
//
|
||
|
// Main Styles
|
||
|
//
|
||
|
|
||
|
* {
|
||
|
outline: none !important;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
&.no-scroll { overflow-y: hidden; }
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
@include font-sans;
|
||
|
width: 100%;
|
||
|
height: 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; }
|
||
|
}
|