_page.scss 817 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. ///
  2. /// Hyperspace by HTML5 UP
  3. /// html5up.net | @ajlkn
  4. /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  5. ///
  6. /* Basic */
  7. // MSIE: Required for IEMobile.
  8. @-ms-viewport {
  9. width: device-width;
  10. }
  11. // MSIE: Prevents scrollbar from overlapping content.
  12. body {
  13. -ms-overflow-style: scrollbar;
  14. }
  15. // Ensures page width is always >=320px.
  16. @include breakpoint(xsmall) {
  17. html, body {
  18. min-width: 320px;
  19. }
  20. }
  21. body {
  22. background: _palette(bg);
  23. // Prevents animation/transition "flicker" on page load.
  24. // Automatically added/removed by js/main.js.
  25. &.is-loading {
  26. *, *:before, *:after {
  27. @include vendor('animation', 'none !important');
  28. @include vendor('transition', 'none !important');
  29. }
  30. }
  31. }