Files
frontend/css/sidebar.css
2025-10-26 10:27:36 -04:00

147 lines
3.0 KiB
CSS
Executable File

body {
overflow: hidden;
}
sidebar {
background-color: linear-gradient(19deg,rgba(87, 199, 133, 1) 0%, rgba(237, 221, 83, 1) 100%);;
height: 100%;
width: 50px;
display: flex;
flex-direction: column;
align-items: center;
user-select: none;
z-index: 10;
}
.sidebar-item {
margin: 6px;
padding: 6px;
height: 26px;
width: 26px;
transition-duration: 0.5s;
transition-timing-function: ease-in-out;
}
iframe {
width: calc(100% - 50px - 10px);
height: calc(100vh - 20px);
margin: 10px;
margin-right: 0px;
border-radius: 8px;
}
.sidebar-divider {
height: 2px;
border-radius: 20px;
width: 80%;
background-color: #ffffff22;
/* auto is being stupid
100vh minus height of 1 object 7 times minus the margin and padding of 7 objects (multiplied twice bc margin and padding on top and bottom) */
margin-bottom: calc(100vh - 26px * 8 - ((6px + 6px) * 2) * 8);
}
.sidebar-item-descriptor {
position: fixed;
right: 25px;
opacity: 0;
transform: translateY(-32px);
text-align: left;
background-color: black;
border-radius: 10px;
padding: 8px;
color: white;
font-size: 12px;
user-select: none;
pointer-events: none;
transition: opacity 0.5s 0.2s, right 0.5s 0.2s;
font-family: "Mulish", serif;
}
.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: 40%;
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;
}
#bottom-menu {
width: fit-content;
padding-left: 16px;
padding-right: 16px;
}
#open-bottom-menu {
bottom: 10px;
height: 15px;
width: 70px;
z-index: 5;
filter: drop-shadow(0 0 16px #fff5);
}
#bottom-menu[enabled=true] {
bottom: 10px;
color: white;
filter: drop-shadow(0 0 16px #fff5);
z-index: 0;
}
#open-bottom-menu[enabled=true] {
bottom: 60px;
filter: drop-shadow(0 0 0 #fff5);
opacity: 0;
}
alert {
border-radius: 4px;
display: flex;
flex-direction: column;
position: absolute;
width: 40%;
justify-content: center;
align-items: center;
padding: 8px;
color: white;
background-color: color-mix(in srgb, #d46c6c 80%, #00000000 20%);
backdrop-filter: blur(2px);
box-shadow: 0 0 10px #d46c6c;
left: 50%;
transform: translateX(-50%);
animation: fadeIn 1s ease-in-out forwards, fadeOut 1s ease-in-out forwards 14s;
cursor: pointer;
}
alert h1 {
font-size: 20px;
margin: 0;
}
alert p {
font-size: 16px;
margin: 0;
}
@keyframes fadeIn {
0% {
opacity: 0;
top: -50px;
}
100% {
opacity: 1;
top: 10px;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
top: 10px;
}
100% {
opacity: 0;
top: -50px;
}
}