| 12345678910111213141516171819202122 |
- html._booting { background: $contentBackground; }
- body._max-width { background: none; }
- html._booting body._max-width { background: $documentBackground; }
- ._app {
- position: relative;
- z-index: 1;
- height: 100%;
- overflow: hidden;
- -webkit-transition: opacity .2s;
- transition: opacity .2s;
- @extend %border-box;
- ._booting & { opacity: 0; }
- ._max-width & {
- margin: 0 auto;
- max-width: $maxWidth;
- background: $contentBackground;
- box-shadow: 1px 0 $headerBorder, -1px 0 $headerBorder;
- }
- }
|