Initial Commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
@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; }
|
||||
}
|
||||
}
|
||||
//}
|
||||
Reference in New Issue
Block a user