Files
loadscreen/scss/_loadscreen.scss
T
2017-03-07 10:55:53 +01:00

36 lines
515 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; }
}
}
//}