-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathstyle.css
More file actions
116 lines (101 loc) · 2.32 KB
/
style.css
File metadata and controls
116 lines (101 loc) · 2.32 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
html, body {
overscroll-behavior-x: none;
}
input[type="range"] {
height: 4px;
appearance: none;
-webkit-appearance: none;
width: 250px;
}
input[type="range"]:focus:not(:focus-visible) {
outline: none;
}
input[type="range"]:not(.pitchSlider)::-webkit-slider-runnable-track {
width: 10px;
height: 11px;
cursor: pointer;
animation: 0.2s;
box-shadow: 1px 1px 1px #000000;
background: #90c100;
border-radius: 1px;
border: 0px solid #010101;
}
input[type="range"]:not(.pitchSlider)::-webkit-slider-thumb {
box-shadow: 1px 1px 1px #000031;
border: 1px solid #00001e;
height: 26px;
width: 26px;
border-radius: 15px;
background: blue;
cursor: pointer;
-webkit-appearance: none;
margin-top: -8px;
}
input[type="range"]:not(.pitchSlider):focus::-webkit-slider-runnable-track {
background: #90c100;
}
input[type="range"]:not(.pitchSlider)::-moz-range-track {
width: 100%;
height: 4px;
cursor: pointer;
animation: 0.2s;
box-shadow: 1px 1px 1px #000000;
background: #90c100;
border-radius: 1px;
border: 0px solid #010101;
}
input[type="range"]:not(.pitchSlider)::-moz-range-thumb {
box-shadow: 1px 1px 1px #000031;
border: 1px solid #00001e;
height: 26px;
width: 26px;
border-radius: 15px;
background: #ffffff;
cursor: pointer;
}
input[type="range"]::-ms-track {
width: 100%;
height: 11px;
cursor: pointer;
animation: 0.2s;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type="range"]::-ms-fill-lower {
background: #90c100;
border: 0px solid #010101;
border-radius: 2px;
box-shadow: 1px 1px 1px #000000;
}
input[type="range"]::-ms-fill-upper {
background: #90c100;
border: 0px solid #010101;
border-radius: 2px;
box-shadow: 1px 1px 1px #000000;
}
input[type="range"]::-ms-thumb {
margin-top: 1px;
box-shadow: 1px 1px 1px #000031;
border: 1px solid #00001e;
height: 26px;
width: 26px;
border-radius: 15px;
background: #ffffff;
cursor: pointer;
}
input[type="range"]:focus::-ms-fill-lower {
background: #90c100;
}
input[type="range"]:focus::-ms-fill-upper {
background: #90c100;
}
.lego-brick {
display: inline-block;
background-color: #FF0000;
border: 1px solid #880000;
margin: 2px;
}
.lego-size-1 { width: 20px; height: 10px; }
.lego-size-2 { width: 40px; height: 10px; }
/* ... more sizes ... */