need more noise features

This commit is contained in:
Yggdrasil75
2025-11-07 14:27:40 -05:00
parent 90a34cd433
commit 18b03fbdac
7 changed files with 521 additions and 50 deletions

View File

@@ -114,3 +114,59 @@ button.danger:hover {
border-radius: 5px;
font-weight: bold;
}
.parameter-panel {
margin: 20px 0;
padding: 20px;
background: rgba(255, 255, 255, 0.15);
border-radius: 10px;
text-align: left;
}
.param-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 15px;
margin-bottom: 20px;
}
.param-group {
display: flex;
align-items: center;
gap: 10px;
}
.param-group label {
min-width: 150px;
font-weight: bold;
}
.param-group input[type="range"] {
flex: 1;
}
.param-group input[type="number"] {
width: 80px;
padding: 5px;
border: none;
border-radius: 4px;
}
.param-group span {
min-width: 40px;
text-align: right;
}
.param-actions {
display: flex;
gap: 10px;
justify-content: center;
}
@media (max-width: 768px) {
.param-grid {
grid-template-columns: 1fr;
}
}