Initial commit

This commit is contained in:
Timon Ostertun
2020-09-19 12:56:10 +02:00
commit 139543199e
618 changed files with 128530 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
/*Prealoder*/
#preloader {
position: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
z-index: 99999;
transition: all 150ms ease;
.spinner-border {
position: absolute;
top: 50%;
left: 50%;
margin-left: -15px;
}
}
.preloader-hide {
opacity: 0;
pointer-events: none;
}
.theme-light {
#preloader {
background-color: $color_white;
}
}
.theme-dark {
#preloader {
background-color: $theme-dark-background;
}
}