/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/css/css-113-010/main.css
33 строки
631 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
.slider { width: 100%; height: 6px; /*-webkit-appearance: none;*/ background: #E9ECEF; border-radius: 3px; outline: none; } .slider::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: var(--color-primary); border-radius: 50%; cursor: pointer; transition: transform 0.2s ease; } .slider::-moz-range-thumb { width: 20px; height: 20px; background: var(--color-primary); border: none; border-radius: 50%; cursor: pointer; transition: transform 0.2s ease; } .slider::-webkit-slider-thumb:hover, .slider::-moz-range-thumb:hover { transform: scale(1.2); }