blob: aea58eb9f34a5208662ad5f828dd226dcfa5f98d (
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
35
36
|
input[type=range] {
margin: 13.8px 0;
}
input[type=range]::-webkit-slider-runnable-track {
height: 8.4px;
}
input[type=range]::-webkit-slider-thumb {
height: 36px;
width: 36px;
border-radius: 18px;
margin-top: 0px;
}
progress {
height: 12px;
margin-top: -6px;
}
body {
font-size: 1.2em;
a {
font-size: 2em;
}
.content {
.sliderContainer {
.entry {
height: 90px;
}
}
}
}
|