Files
Nitro-V3/src/css/slider.css
T
2026-02-18 11:16:52 +01:00

54 lines
894 B
CSS

.nitro-slider {
display: flex;
align-items: center;
width: 100%;
height: 25px;
.track {
height: 3px;
border-radius: .25rem;
overflow: hidden;
&.track-0 {
background-color: #1e7295;
}
&.track-1 {
background-color: #b6bec5;
}
}
.thumb {
border-radius: 50%;
width: 25px;
height: 25px;
background-color: gray;
font-size: 10px;
text-align: center;
line-height: 25px;
padding: 0 3px;
&:hover,
.active {
cursor: pointer;
}
&.active {
outline: none;
}
&.degree {
&:after {
content: '\00b0'
}
}
&.percent {
&:after {
content: '\0025'
}
}
}
}