47 lines
896 B
CSS
47 lines
896 B
CSS
.loading_wrap {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
/*min-width: 1120px;*/
|
|
/*min-height: 580px;*/
|
|
background: rgba(255, 255, 255, 0.3);
|
|
overflow: hidden;
|
|
opacity: 1;
|
|
z-index: 108;
|
|
}
|
|
|
|
.loading {
|
|
width: 40px;
|
|
height: 40px;
|
|
position: relative;
|
|
top: 40%;
|
|
margin: 0 auto;
|
|
/*overflow: hidden;*/
|
|
-webkit-animation: rot 1s infinite linear;
|
|
-moz-animation: rot 1s infinite linear;
|
|
animation: rot 1s infinite linear;
|
|
}
|
|
|
|
.loading img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
@-webkit-keyframes rot {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
@-moz-keyframes rot {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
}
|
|
|
|
@keyframes rot {
|
|
from { transform: rotate(0deg); }
|
|
to { transform: rotate(360deg); }
|
|
} |