Spaces:
Sleeping
Sleeping
File size: 698 Bytes
f2bfbb5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | .controls {
display: flex;
align-items: center;
gap: 0.5rem;
background: rgba(255, 255, 255, 0.05);
padding: 0.5rem 1rem;
border-radius: 20px;
border: 1px solid var(--border-glass);
}
.label {
font-size: 0.85rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 1px;
margin-right: 0.5rem;
}
.button {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--text-primary);
font-weight: bold;
cursor: pointer;
padding: 0.25rem 0.75rem;
border-radius: 8px;
transition: all 0.2s ease;
}
.button:hover {
background: var(--accent-primary);
color: #fff;
border-color: var(--accent-primary);
}
|