summaryrefslogtreecommitdiff
path: root/css/seekbar.css
blob: 67a3ec602a7cf60d8836f5e92ffe16c36170b842 (plain)
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
#player-seekbar {
    -webkit-appearance: none;
    height: 2px;
    border-radius: 999px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

#player-seekbar::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #282828;
}

#player-seekbar::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #282828;
}

#player-seekbar::-webkit-slider-thumb:hover {
    background: rgba(40, 40, 40, 0.75);
}

#player-seekbar::-moz-range-thumb:hover {
    background: rgba(40, 40, 40, 0.75);
}