mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
38 lines
616 B
SCSS
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;
|
|
}
|