You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
devdocs/assets/stylesheets/components/_app.scss

42 lines
827 B

11 years ago
._app {
position: relative;
z-index: 1;
10 years ago
max-width: 90rem;
11 years ago
height: 100%;
padding-top: $headerHeight;
overflow: hidden;
background: white;
box-shadow: 1px 0 #c4c9cc, 1px 0 1px rgba(black, .15);
11 years ago
-webkit-transition: opacity .2s;
transition: opacity .2s;
@extend %border-box;
._booting > & { opacity: 0; }
._noscript > & { display: none; }
11 years ago
}
._booting {
opacity: 0;
&._loading, &._loading:before { opacity: 1; }
11 years ago
&:before {
content: 'Loading\2026';
11 years ago
position: absolute;
top: 50%;
left: 0;
right: 0;
line-height: 1;
margin-top: -.75em;
font-size: 4rem;
color: #c8c8c8;
11 years ago
text-align: center;
letter-spacing: -.125rem;
opacity: 0;
-webkit-transition: opacity .1s .3s;
transition: opacity .1s .3s;
11 years ago
}
}
._noscript { opacity: 1; }