48 lines
668 B
SCSS
48 lines
668 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 $blue;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/*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;
|
||
|
padding-left: 16px;
|
||
|
|
||
|
line-height: 35px;
|
||
|
font-size: 14px;
|
||
|
|
||
|
background-color: $white;
|
||
|
border: 1px solid $blue;
|
||
|
border-radius: 2px;
|
||
|
|
||
|
.spinner::before{
|
||
|
font-size: 14px;
|
||
|
}
|
||
|
}
|