2018-02-25 00:49:23 +01:00
|
|
|
///
|
2018-04-23 23:14:38 +02:00
|
|
|
/// Solid State by HTML5 UP
|
2018-02-25 00:49:23 +01:00
|
|
|
/// 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;
|
|
|
|
}
|
|
|
|
|
2018-04-23 23:14:38 +02:00
|
|
|
// MSIE: Prevents scrollbar from overlapping content.
|
|
|
|
body {
|
|
|
|
-ms-overflow-style: scrollbar;
|
|
|
|
}
|
|
|
|
|
2018-02-25 00:49:23 +01:00
|
|
|
// Ensures page width is always >=320px.
|
|
|
|
@include breakpoint(xsmall) {
|
|
|
|
html, body {
|
|
|
|
min-width: 320px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2018-04-23 23:14:38 +02:00
|
|
|
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;
|
2018-02-25 00:49:23 +01:00
|
|
|
|
|
|
|
// Prevents animation/transition "flicker" on page load.
|
|
|
|
// Automatically added/removed by js/main.js.
|
2018-04-23 23:14:38 +02:00
|
|
|
&.is-loading {
|
2018-02-25 00:49:23 +01:00
|
|
|
*, *:before, *:after {
|
|
|
|
@include vendor('animation', 'none !important');
|
|
|
|
@include vendor('transition', 'none !important');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|