70 lines
872 B
CSS
70 lines
872 B
CSS
body,
|
|
html {
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
width: 100%;
|
|
height: 100%;
|
|
background: transparent;
|
|
position: relative;
|
|
}
|
|
#statusContainer {
|
|
z-index: 100;
|
|
font-weight: 500;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
background-color: #D12025;
|
|
color: white;
|
|
padding: 5px 20px;
|
|
border-radius: 7px;
|
|
position: absolute;
|
|
bottom: 10px;
|
|
right: 10px;
|
|
}
|
|
#mainContainer {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
@keyframes slide-in-left {
|
|
to { left: 0; }
|
|
}
|
|
|
|
@keyframes slide-out-left {
|
|
to { left: -100%; }
|
|
}
|
|
|
|
@keyframes slide-in-right {
|
|
to {
|
|
right: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes slide-out-right {
|
|
to {
|
|
right: -100%;
|
|
}
|
|
}
|
|
|
|
@keyframes hideIn {
|
|
99% {
|
|
visibility: hidden;
|
|
}
|
|
100% {
|
|
visibility: visible;
|
|
}
|
|
}
|
|
@keyframes fadeIn {
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
@keyframes fadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|