68 lines
998 B
CSS
68 lines
998 B
CSS
#upg-saves {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-size: 0.9em;
|
|
visibility: hidden;
|
|
position: absolute;
|
|
left: 1rem;
|
|
bottom: 1rem;
|
|
}
|
|
|
|
#upg-saves-reset {
|
|
cursor: pointer;
|
|
}
|
|
#upg-saves-reset:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
#upg-cuteface {
|
|
visibility: hidden;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0.3;
|
|
z-index: -5;
|
|
}
|
|
|
|
#upg-credits {
|
|
display: none;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--color-dark);
|
|
top: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
}
|
|
.upg-credits-inner {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
position: absolute;
|
|
width: 100%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
animation: 5s credits linear;
|
|
}
|
|
@keyframes credits {
|
|
0% {
|
|
top: 100%;
|
|
}
|
|
|
|
100% {
|
|
top: 0%;
|
|
}
|
|
}
|
|
|
|
.upg-credits-footer {
|
|
margin-top: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.upg-credits-play-again {
|
|
margin-top: 2rem;
|
|
}
|