mirror of
https://github.com/prurigro/hypothetical.git
synced 2024-11-09 19:26:38 -05:00
50 lines
883 B
SCSS
Vendored
50 lines
883 B
SCSS
Vendored
// Core
|
|
@import "_var";
|
|
@import "_fonts";
|
|
|
|
// Libraries
|
|
@import "bootstrap-sass/assets/stylesheets/_bootstrap.scss";
|
|
|
|
// Supplementary
|
|
@import "elements/**/*.scss";
|
|
@import "pages/**/*.scss";
|
|
|
|
//
|
|
// Main Website Styles
|
|
//
|
|
|
|
[data-whatinput="initial"], [data-whatinput="keyboard"] {
|
|
:focus {
|
|
outline: 1px dotted $c-base;
|
|
}
|
|
}
|
|
|
|
[data-whatinput="mouse"], [data-whatinput="touch"] {
|
|
:focus {
|
|
outline: none !important;
|
|
}
|
|
}
|
|
|
|
html {
|
|
width: 100%;
|
|
&.no-scroll { overflow-y: hidden; }
|
|
}
|
|
|
|
body {
|
|
@include font-sans;
|
|
width: 100%;
|
|
color: $c-text;
|
|
-webkit-overflow-scrolling: touch;
|
|
@media (max-width: $grid-float-breakpoint-max) { padding-top: $nav-height-mobile; }
|
|
}
|
|
|
|
#page-container {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
padding-top: $nav-height;
|
|
flex-direction: column;
|
|
|
|
#main-content {
|
|
flex-grow: 1;
|
|
}
|
|
}
|