50a33d5e92
Former-commit-id: 9ab2bcb826eaba89f86497c00d82650767370cd3 [formerly c316949da5dc69fc2409af15185770d99eb82df3] Former-commit-id: df9e90fb55585d1bf164a8a57d59fb11420be236
50 lines
No EOL
1.1 KiB
SCSS
50 lines
No EOL
1.1 KiB
SCSS
///
|
|
/// Solid State by HTML5 UP
|
|
/// html5up.net | @ajlkn
|
|
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
|
|
///
|
|
|
|
/* Basic */
|
|
|
|
// MSIE: Required for IEMobile.
|
|
@-ms-viewport {
|
|
width: device-width;
|
|
}
|
|
|
|
// MSIE: Prevents scrollbar from overlapping content.
|
|
body {
|
|
-ms-overflow-style: scrollbar;
|
|
}
|
|
|
|
// Ensures page width is always >=320px.
|
|
@include breakpoint(xsmall) {
|
|
html, body {
|
|
min-width: 320px;
|
|
}
|
|
}
|
|
|
|
body {
|
|
background-color: _palette(bg);
|
|
|
|
background-image: linear-gradient(to top, transparentize(_palette(bg), 0.2), transparentize(_palette(bg), 0.2)),
|
|
url('../../images/bg.jpg');
|
|
|
|
background-size: auto,
|
|
cover;
|
|
|
|
background-attachment: fixed,
|
|
fixed;
|
|
|
|
background-position: center,
|
|
center;
|
|
|
|
// Prevents animation/transition "flicker" on page load.
|
|
// Automatically added/removed by js/main.js.
|
|
&.is-loading {
|
|
*, *:before, *:after {
|
|
@include vendor('animation', 'none !important');
|
|
@include vendor('transition', 'none !important');
|
|
}
|
|
}
|
|
|
|
} |