Initial Commit

This commit is contained in:
2017-03-07 10:55:53 +01:00
commit 498492d79e
7 changed files with 140 additions and 0 deletions
+36
View File
@@ -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; }
}
}
//}