-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (93 loc) · 1.85 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
99
100
101
102
103
104
105
106
107
108
109
110
body {
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}
:root {
--speed-value: 10%;
}
#canvas_holder {
margin-bottom: 30px;
}
#input_holder {
width: 500px;
height: 28px;
position:relative;
white-space: nowrap;
overflow: hidden;
}
#disk_count_holder {
top: 2px;
left: 0;
position: absolute;
}
#disk_count {
width: 40px;
height: 20px;
}
#move_to_holder {
top: 0;
right:0;
position:absolute;
}
#move_to {
width: 100px;
height: 28px;
}
#button_holder {
width: 500px;
display: inline-flex;
overflow: hidden;
margin: 30px 0;
}
button {
width: 100px;
height: 30px;
cursor: pointer;
margin-left: 100px;
}
button:disabled {
cursor: default;
}
input[type=range] {
-webkit-appearance: none;
-moz-appearance: none;
width: 500px;
height: 6px;
border-radius: 3px;
border: 1px solid black;
outline: none;
background: #58f;
margin: 16px 0 16px 0;
background: linear-gradient(to right, #25c 0%, #25c var(--speed-value), #ddd var(--speed-value), #ddd 100%);
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
-moz-appearance: none;
width: 12px;
height: 24px;
border-radius: 20%;
border: 1px solid black;
cursor: pointer;
background: #25c;
}
input[type=range]::-moz-range-thumb {
-webkit-appearance: none;
-moz-appearance: none;
width: 11px;
height: 23px;
border-radius: 20%;
border: 1px solid black;
cursor: pointer;
background: #25c;
}
input[type=range]:focus::-webkit-slider-runnable-track {
-webkit-appearance: none;
-moz-appearance: none;
outline: 1px dotted #333;
outline-offset: 6px;
}
input[type=range]:focus::-moz-range-track {
-webkit-appearance: none;
-moz-appearance: none;
outline: 1px dotted #333;
outline-offset: 16px;
}