39 lines
649 B
SCSS
39 lines
649 B
SCSS
@keyframes fadeOut {
|
|
0% {
|
|
opacity: 1;
|
|
}
|
|
|
|
100% {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
body.closed {
|
|
background: #f66;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
|
|
.closed_notice {
|
|
position: absolute;
|
|
font-weight: bold;
|
|
font-size: 16pt;
|
|
text-transform: uppercase;
|
|
animation: fadeOut 3s forwards;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: 1;
|
|
}
|
|
|
|
#stop-overlay {
|
|
z-index: 1;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-image: url(stop.svg);
|
|
background-position: 50% 50%;
|
|
}
|
|
}
|