Finish unopened page.

This commit is contained in:
2019-03-04 00:02:43 +01:00
parent 9b55f56975
commit 8990a3d4ac
8 changed files with 112 additions and 85 deletions

3
styles/base.scss Normal file
View File

@@ -0,0 +1,3 @@
* {
font-family: verdana, sans-serif;
}

39
styles/closed.scss Normal file
View File

@@ -0,0 +1,39 @@
@import "base";
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
body.closed {
background: #f66;
text-align: center;
.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-image: url(stop.svg);
background-repeat: no-repeat;
background-position: 50% 50%;
}
}