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

@ -40,4 +40,8 @@
.bookmarkletdiv {
backdrop-filter: blur(0);
}
}
body[fast] .bookmarkletdiv {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}

View File

@ -77,4 +77,8 @@ body {
game {
backdrop-filter: blur(0);
}
}
body[fast] game {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}

View File

@ -53,4 +53,8 @@
#gamecontainer {
backdrop-filter: blur(0);
}
}
body[fast] #gamecontainer {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}

View File

@ -173,4 +173,8 @@ input[type=checkbox] {
#popup {
backdrop-filter: blur(0);
}
}
body[fast] #popup {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}

View File

@ -140,4 +140,8 @@ result p {
section {
backdrop-filter: blur(0);
}
}
body[fast] section {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}

View File

@ -26,4 +26,9 @@ sections {
section {
backdrop-filter: blur(0);
}
}
body[fast] section {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}

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;
}

View File

@ -52,4 +52,8 @@
.users {
backdrop-filter: blur(0);
}
}
body[fast] .users {
background-color: color-mix(in srgb, var(--color-2) 70%, #000000 30%);
backdrop-filter: blur(0);
}