143 lines
2.9 KiB
CSS
Executable File
143 lines
2.9 KiB
CSS
Executable File
.startup {
|
|
top: 0px;
|
|
left: 0px;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0px;
|
|
background-image: url(../images/hoteltv_service_preparing_joson.jpg);
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.busy-frame {
|
|
position: absolute;
|
|
z-index: 10001;
|
|
top: 0;
|
|
left: 0;
|
|
width: 1920px;
|
|
height: 1080px;
|
|
padding: 0px;
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
display: none;
|
|
}
|
|
|
|
.busy-frame #busy_animation {
|
|
position: relative;
|
|
z-index: 10002;
|
|
top: 426px;
|
|
left: 874px;
|
|
width: 256px;
|
|
height: 256px;
|
|
padding: 0px;
|
|
display: none;
|
|
}
|
|
|
|
.busy-frame #busy_animation div {
|
|
transform-origin: 60px 80px;
|
|
animation: loading-spinner 1.2s linear infinite;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:after {
|
|
content: " ";
|
|
display: block;
|
|
position: absolute;
|
|
top: 0px;
|
|
left: 60px;
|
|
width: 12px;
|
|
height: 28px;
|
|
border-radius: 5%;
|
|
background: #fff;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(1) {
|
|
transform: rotate(0deg);
|
|
animation-delay: -1.1s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(2) {
|
|
transform: rotate(30deg);
|
|
animation-delay: -1s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(3) {
|
|
transform: rotate(60deg);
|
|
animation-delay: -0.9s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(4) {
|
|
transform: rotate(90deg);
|
|
animation-delay: -0.8s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(5) {
|
|
transform: rotate(120deg);
|
|
animation-delay: -0.7s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(6) {
|
|
transform: rotate(150deg);
|
|
animation-delay: -0.6s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(7) {
|
|
transform: rotate(180deg);
|
|
animation-delay: -0.5s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(8) {
|
|
transform: rotate(210deg);
|
|
animation-delay: -0.4s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(9) {
|
|
transform: rotate(240deg);
|
|
animation-delay: -0.3s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(10) {
|
|
transform: rotate(270deg);
|
|
animation-delay: -0.2s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(11) {
|
|
transform: rotate(300deg);
|
|
animation-delay: -0.1s;
|
|
}
|
|
|
|
.busy-frame #busy_animation div:nth-child(12) {
|
|
transform: rotate(330deg);
|
|
animation-delay: 0s;
|
|
}
|
|
|
|
@keyframes loading-spinner {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
#debugwin {
|
|
z-index: 10000;
|
|
position: absolute;
|
|
top: 11px;
|
|
bottom: 22px;
|
|
right: 11px;
|
|
font-size: 12px;
|
|
background-color: rgba(18, 18, 18, 0.3);
|
|
text-align: left;
|
|
color: rgb(235, 235, 235);
|
|
line-height: 24px;
|
|
padding-left: 5px;
|
|
padding-top: 5px;
|
|
display: inline-flex;
|
|
max-width: 500px;
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
display: none;
|
|
}
|