-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.html
56 lines (38 loc) · 1.27 KB
/
options.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
<!DOCTYPE html>
<html>
<head>
<title>Inky - Moves - Option</title>
<link rel="stylesheet" href="css/chota.min.css">
</head>
<body style="width: 70%; margin: auto; ">
<h4>Inky - Option</h4>
<form>
<label class="row">Color:
<input type="range" id="opacity" value="0.1" min="0" max="1" step="0.1"/>
</label>
<fieldset class="row">
<p class="col-11">Inky - Moves</p>
<p class="col-1"><input type="checkbox" id="move" checked /></p>
<label class="col-12">Scroll Offset:
<input type="range" id="scroll" value="0.8" min="0" max="1" step="0.05"/>
</label>
<label class="col-12">Height:
<input type="range" id="height" value="30" min="0" max="50" />
</label>
<label class="col-12">Width:
<input type="range" id="width" value="5" min="0" max="10"/>
</label>
<label class="col-12">Offset (from bottom):
<input type="range" id="offset" value="3" min="0" max="10" />
</label>
</fieldset>
<fieldset class="row">
<p class="col-11">Inky - Makeup</p>
<p class="col-1"><input type="checkbox" id="makeup" checked /></p>
<div class="row">
</div>
</form>
<script src="js/options.js"></script>
<script src="js/content.js"></script>
</body>
</html>