fast mode and other stuff idk

This commit is contained in:
sky
2025-09-07 16:30:15 -04:00
parent aa700bfb2e
commit 9395403389
15 changed files with 104 additions and 201 deletions

View File

@ -9,6 +9,7 @@ sidebar {
flex-direction: column;
align-items: center;
user-select: none;
z-index: 10;
}
.sidebar-item {
margin: 6px;
@ -56,4 +57,35 @@ iframe {
.sidebar-item:hover .sidebar-item-descriptor {
opacity: 1;
right: 55px;
}
#bottom-menu, #open-bottom-menu {
position: absolute;
bottom: -40px;
height: 50px;
left: 0;
right: 0;
width: 30%;
margin-left: auto;
margin-right: auto;
display: flex;
justify-content: center;
align-items: center;
background-color: black;
z-index: 5;
border-radius: 10px 10px 0 0;
cursor: pointer;
color: black;
}
#open-bottom-menu {
bottom: 10px;
height: 15px;
width: 70px;
z-index: 5;
}
#bottom-menu[enabled=true] {
bottom: 10px;
color: white;
}
#open-bottom-menu[enabled=true] {
bottom: 60px;
}