Implemented first version of UI for #4

This commit is contained in:
2026-03-11 14:45:50 +00:00
parent 88999dafd5
commit c0f6765a06
3 changed files with 51 additions and 0 deletions

View File

@ -165,3 +165,29 @@ button:hover, .buttonHighlight {
.imgRightText > p {
margin: auto;
}
#booperOverlay {
position: absolute;
display: flex;
justify-content: center;
width: 0;
height: 0;
pointer-events: none;
opacity: 0%;
transition: opacity 0.5s;
}
#booperOverlay > div {
background-color: #393e41A0;
position: absolute;
width: max-content;
bottom: 0px;
border-radius: 10px;
text-align: center;
}
#booperOverlay > div > * {
margin: 0.5em 1em;
}