_app.scss 526 B

12345678910111213141516171819202122
  1. html._booting { background: $contentBackground; }
  2. body._max-width { background: none; }
  3. html._booting body._max-width { background: $documentBackground; }
  4. ._app {
  5. position: relative;
  6. z-index: 1;
  7. height: 100%;
  8. overflow: hidden;
  9. -webkit-transition: opacity .2s;
  10. transition: opacity .2s;
  11. @extend %border-box;
  12. ._booting & { opacity: 0; }
  13. ._max-width & {
  14. margin: 0 auto;
  15. max-width: $maxWidth;
  16. background: $contentBackground;
  17. box-shadow: 1px 0 $headerBorder, -1px 0 $headerBorder;
  18. }
  19. }