-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslider.css
More file actions
34 lines (32 loc) · 762 Bytes
/
Copy pathslider.css
File metadata and controls
34 lines (32 loc) · 762 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');
#rangeValue {
position: relative;
display: block;
text-align: center;
font-size: 6em;
color: #999;
font-weight: 400;
}
.range {
grid-column: span 2;
margin-left:10px;
margin-top:5px;
width: 200px;
height: 15px;
-webkit-appearance: none;
background: #111;
outline: none;
border-radius: 15px;
overflow: hidden;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 1);
}
.range::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: rgba(21, 183, 185, 1);
cursor: pointer;
border: 4px solid #333;
box-shadow: -407px 0 0 400px rgba(21, 183, 185, 1);
}