mirror of https://github.com/freeCodeCamp/devdocs
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.
35 lines
621 B
35 lines
621 B
._app {
|
|
position: relative;
|
|
z-index: 1;
|
|
height: 100%;
|
|
padding-top: $headerHeight;
|
|
overflow: hidden;
|
|
-webkit-transition: opacity .2s;
|
|
transition: opacity .2s;
|
|
@extend %border-box;
|
|
|
|
._booting > & { opacity: 0; }
|
|
}
|
|
|
|
._booting {
|
|
opacity: 0;
|
|
-webkit-transition: opacity .1s .3s;
|
|
transition: opacity .1s .3s;
|
|
|
|
&._loading { opacity: 1; }
|
|
|
|
&:before {
|
|
content: 'Loading…';
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
line-height: 1;
|
|
margin-top: -.75em;
|
|
font-size: 4rem;
|
|
color: #ccc;
|
|
text-align: center;
|
|
letter-spacing: -.125rem;
|
|
}
|
|
}
|