noscript.scss 738 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import 'libs/vars';
  2. @import 'libs/functions';
  3. @import 'libs/mixins';
  4. @import 'libs/vendor';
  5. @import 'libs/breakpoints';
  6. /*
  7. Dimension by HTML5 UP
  8. html5up.net | @ajlkn
  9. Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
  10. */
  11. /* BG */
  12. #bg {
  13. body.is-preload & {
  14. &:before {
  15. background-color: transparent;
  16. }
  17. }
  18. }
  19. /* Header */
  20. #header {
  21. body.is-preload & {
  22. > * {
  23. opacity: 1;
  24. }
  25. @include vendor('filter', 'none');
  26. .content {
  27. .inner {
  28. max-height: none;
  29. padding: 3rem 2rem;
  30. opacity: 1;
  31. }
  32. }
  33. }
  34. }
  35. /* Main */
  36. #main {
  37. article {
  38. opacity: 1;
  39. margin: (_size(element-margin) * 2) 0 0 0;
  40. }
  41. }