36 lines
517 B
SCSS
36 lines
517 B
SCSS
//@import "scss-grid/framework";
|
|
|
|
//#loadscreen {
|
|
@mixin loadscreen {
|
|
@include absolute-span();
|
|
// Overwrite positioning
|
|
position: fixed !important;
|
|
|
|
text-align: center;
|
|
|
|
background-color: white;
|
|
|
|
.loadtable {
|
|
display: table;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
.loadtext {
|
|
display: table-cell;
|
|
|
|
height: 10px;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-weight: 700;
|
|
|
|
animation: blinker 3s ease-in-out infinite;
|
|
}
|
|
}
|
|
@keyframes blinker {
|
|
50% { opacity: 0; }
|
|
}
|
|
}
|
|
//} |