fleet/frontend/styles/global/_global.scss
2016-11-18 09:41:52 -06:00

38 lines
616 B
SCSS

html {
position: relative;
min-height: 100%;
// Because iOS hates us we must fight to the death!
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
// End Apple War
}
body {
color: $text-ultradark;
padding: 0;
margin: 0;
font-family: 'Oxygen', sans-serif;
font-size: $base;
line-height: 1.6;
}
h1,
h2,
h3 {
line-height: 1.2;
}
.wrapper {
background: $bg-medium;
margin: 0 0 $footer-height;
min-height: calc(100vh - #{$footer-height});
&--background {
background: url('/assets/images/background.png') center center;
background-size: cover;
}
}
.cf {
@include clearfix;
}