57 lines
771 B
SCSS
Raw Normal View History

2021-12-21 11:41:10 +01:00
/*
Loading okna
*/
body.wait {
#loading {
display: block;
}
}
body.waitlong {
#loading {
bottom: auto;
top: 45%;
left: 50%;
transform: translateX(-50%);
}
}
/*loading word at bottom left*/
#loading {
display: none;
z-index: 900;
position: fixed;
bottom: 16px;
left: 16px;
box-sizing: border-box;
width: 275px;
height: 38px;
2021-12-21 11:41:10 +01:00
background-color: $white;
border: 1px solid $black;
2021-12-21 11:41:10 +01:00
border-radius: 2px;
span.spinner{
position: absolute;
top: 10px;
left: 16px;
font-size: 14px;
&::before{
font-size: 14px;
}
}
span.text{
position: absolute;
top: 8px;
left: 40px;
2021-12-21 11:41:10 +01:00
font-size: 14px;
}
}