-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (96 loc) · 2.61 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
html, body {
font-family: Helvetica, sans-serif;
color: azure;
margin: 0;
height: 100vh;
width: 100%;
font-size: 0.5em;
}
input[type=range].slider {
-webkit-appearance: none;
width: 100%;
margin: 0px 0;
}
input[type=range].slider:focus {
outline: none;
}
input[type=range].slider::-webkit-slider-runnable-track {
width: 100%;
height: 10px;
cursor: pointer;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
background: #484d4d;
border-radius: 0px;
border: 0px solid rgba(1, 1, 1, 0);
}
input[type=range].slider::-webkit-slider-thumb {
box-shadow: 0px 0px 0px rgba(103, 0, 0, 0), 0px 0px 0px rgba(129, 0, 0, 0);
border: 0px solid rgba(0, 153, 255, 0);
height: 10px;
width: 10px;
border-radius: 0px;
background: rgba(0, 153, 255, 0.93);
cursor: pointer;
-webkit-appearance: none;
margin-top: 0px;
}
input[type=range].slider:focus::-webkit-slider-runnable-track {
background: #5e6565;
}
input[type=range].slider::-moz-range-track {
width: 100%;
height: 10px;
cursor: pointer;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
background: #484d4d;
border-radius: 0px;
border: 0px solid rgba(1, 1, 1, 0);
}
input[type=range].slider::-moz-range-thumb {
box-shadow: 0px 0px 0px rgba(103, 0, 0, 0), 0px 0px 0px rgba(129, 0, 0, 0);
border: 0px solid rgba(0, 153, 255, 0);
height: 10px;
width: 10px;
border-radius: 0px;
background: rgba(0, 153, 255, 0.93);
cursor: pointer;
}
input[type=range].slider::-ms-track {
width: 100%;
height: 10px;
cursor: pointer;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type=range].slider::-ms-fill-lower {
background: #323535;
border: 0px solid rgba(1, 1, 1, 0);
border-radius: 0px;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}
input[type=range].slider::-ms-fill-upper {
background: #484d4d;
border: 0px solid rgba(1, 1, 1, 0);
border-radius: 0px;
box-shadow: 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px rgba(13, 13, 13, 0);
}
input[type=range].slider::-ms-thumb {
box-shadow: 0px 0px 0px rgba(103, 0, 0, 0), 0px 0px 0px rgba(129, 0, 0, 0);
border: 0px solid rgba(0, 153, 255, 0);
width: 10px;
border-radius: 0px;
background: rgba(0, 153, 255, 0.93);
cursor: pointer;
height: 10px;
}
input[type=range].slider:focus::-ms-fill-lower {
background: #484d4d;
}
input[type=range].slider:focus::-ms-fill-upper {
background: #5e6565;
}
#menu {
position: absolute;
width: 150px;
}