41 lines
592 B
SCSS
41 lines
592 B
SCSS
/*
|
|
Loading okna
|
|
*/
|
|
|
|
body.wait {
|
|
#loading {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
body.waitlong {
|
|
#loading {
|
|
bottom: auto;
|
|
top: 45%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
|
|
padding: 15px 25px;
|
|
|
|
border: 1px solid $strong_blue;
|
|
}
|
|
}
|
|
|
|
/*loading word at bottom left*/
|
|
#loading {
|
|
display: none;
|
|
z-index: 900;
|
|
position: fixed;
|
|
bottom: 0px;
|
|
left: 0px;
|
|
|
|
padding: 7px 12px;
|
|
|
|
line-height: 20px;
|
|
font-size: 13px;
|
|
|
|
background-color: $soft_blue_lighten;
|
|
border-top: 1px solid $strong_blue;
|
|
border-right: 1px solid $strong_blue;
|
|
}
|