2018-08-11 17:17:55 +02:00
|
|
|
html._booting { background: var(--contentBackground); }
|
2017-09-23 20:00:44 +02:00
|
|
|
body._max-width { background: none; }
|
2018-08-11 17:17:55 +02:00
|
|
|
html._booting body._max-width { background: var(--documentBackground); }
|
2017-09-23 20:00:44 +02:00
|
|
|
|
2013-10-24 20:25:52 +02:00
|
|
|
._app {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
height: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
-webkit-transition: opacity .2s;
|
|
|
|
transition: opacity .2s;
|
|
|
|
@extend %border-box;
|
|
|
|
|
2017-09-10 00:14:23 +02:00
|
|
|
._booting & { opacity: 0; }
|
2015-08-03 23:08:36 +02:00
|
|
|
|
2017-06-25 23:55:17 +02:00
|
|
|
._max-width & {
|
2015-08-03 23:08:36 +02:00
|
|
|
margin: 0 auto;
|
2018-08-11 17:17:55 +02:00
|
|
|
max-width: var(--maxWidth);
|
|
|
|
background: var(--contentBackground);
|
|
|
|
box-shadow: 1px 0 var(--headerBorder), -1px 0 var(--headerBorder);
|
2015-08-03 23:08:36 +02:00
|
|
|
}
|
2013-10-24 20:25:52 +02:00
|
|
|
}
|