30 lines
547 B
SCSS
30 lines
547 B
SCSS
/* License: AGPL-3.0-or-later WITH WTO-AP-3.0-or-later
|
|
Full license explanation at https://github.com/houdiniproject/houdini/blob/master/LICENSE */
|
|
@import 'mixins';
|
|
|
|
.loading--overlay {
|
|
position: relative;
|
|
}
|
|
|
|
.loading--overlay:after,
|
|
.loading--overlay:before {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.loading--overlay:before {
|
|
top: 0;
|
|
content: '';
|
|
height: 100%;
|
|
background: rgba(white, 0.4);
|
|
}
|
|
|
|
.loading--overlay:after {
|
|
top: 50%;
|
|
font-size: 18px;
|
|
margin-top: -10px;
|
|
text-align: center;
|
|
content: 'Loading...';
|
|
}
|
|
|