-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (43 loc) · 981 Bytes
/
style.css
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
36
37
38
39
40
41
42
43
44
45
46
47
48
@font-face {
font-family: 'Roboto';
src: url('font/roboto-regular-webfont.woff2') format('woff2'),
url('font/roboto-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
html, body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 10px;
border-radius: 3px;
background: #444;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: #ddd;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: #ddd;
cursor: pointer;
}