Add initial webui

This commit is contained in:
2025-11-01 17:18:32 -07:00
committed by Mark
parent 19f523d0ed
commit 07aeda5e07
28 changed files with 2994 additions and 0 deletions

View File

@@ -0,0 +1,57 @@
.sliderContainer {
display: flex;
flex-direction: column;
gap: 8px;
}
.sliderLabel {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
color: #cccccc;
}
.sliderValue {
font-weight: 600;
color: #e0e0e0;
}
.slider {
width: 100%;
height: 6px;
border-radius: 3px;
background: #3a3a3a;
outline: none;
-webkit-appearance: none;
appearance: none;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 16px;
height: 16px;
border-radius: 50%;
background: #4fc3f7;
cursor: pointer;
transition: background 0.15s ease;
}
.slider::-webkit-slider-thumb:hover {
background: #6dd1ff;
}
.slider::-moz-range-thumb {
width: 16px;
height: 16px;
border: none;
border-radius: 50%;
background: #4fc3f7;
cursor: pointer;
transition: background 0.15s ease;
}
.slider::-moz-range-thumb:hover {
background: #6dd1ff;
}