-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (62 loc) · 1.83 KB
/
index.html
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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- PLEASE NO CHANGES BELOW THIS LINE (UNTIL I SAY SO) -->
<script language="javascript" type="text/javascript" src="libraries/p5.js"></script>
<script language="javascript" type="text/javascript" src="libraries/p5.ble.js"></script>
<script language="javascript" type="text/javascript" src="bluetooth.js"></script>
<script language="javascript" type="text/javascript" src="configCommands.js"></script>
<script language="javascript" type="text/javascript" src="drawScreen.js"></script>
<script language="javascript" type="text/javascript" src="showHideParam.js"></script>
<script language="javascript" type="text/javascript" src="speedoConfigurator.js"></script>
<!-- OK, YOU CAN MAKE CHANGES BELOW THIS LINE AGAIN -->
<!-- This line removes any default padding and style.
You might only need one of these values set. -->
<style>
body {
padding:
0;
margin:
0;
}
.AlexaStatusSlider {
width: 42px;
}
input[type=range] {
-webkit-appearance: none;
width: 40px;
height: 20px;
background: lightgray;
border-radius: 10px;
}
input[type=range]:focus {
outline: none;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
background: lightblue;
cursor: pointer;
border-radius: 50%;
}
input[type=range]::-moz-range-thumb {
width: 20px;
height: 20px;
background: lightblue;
cursor: pointer;
border-radius: 50%;
}
input[type=range]::-ms-thumb {
width: 20px;
height: 20px;
background: lightblue;
border-radius: 50%;
cursor: pointer;
}
</style>
</head>
<body>
</body>
</html>