-
Notifications
You must be signed in to change notification settings - Fork 0
/
gain.html
52 lines (42 loc) · 2.5 KB
/
gain.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link id="uiCSS" rel="stylesheet" href="css/ui.css">
<link rel="stylesheet" href="css/index.css">
<title>AudioMoth USB Microphone Gain</title>
</head>
<body style="font-size: 10pt; overflow: hidden; font-family: Helvetica, Arial, sans-serif;-webkit-user-select: none; -webkit-app-region: drag;">
<div class="container" style="text-align: center; padding: 8px;">
<div class="row" style="margin-bottom: 8px;">
<div class="col-12">
<ul class="pagination" id="gain-pagination" style="margin-bottom: 0px;">
<li class="page-item" style="text-align: center; width: 16.6%;"><a class="page-link" href="#">Low</a></li>
<li class="page-item" style="text-align: center; width: 25%;"><a class="page-link" href="#">Low-Medium</a></li>
<li class="page-item" style="text-align: center; width: 16.6%;"><a class="page-link" href="#">Medium</a></li>
<li class="page-item" style="text-align: center; width: 25%;"><a class="page-link" href="#">Medium-High</a></li>
<li class="page-item" style="text-align: center; width: 16.6%;"><a class="page-link" href="#">High</a></li>
</ul>
</div>
</div>
<div class="row" style="margin-top: 0px; margin-bottom: 8px;">
<div class="col-12">
<ul class="pagination" id="range-pagination" style="margin-bottom: 0px;">
<li class="page-item" style="text-align: center; width: 50%;"><a class="page-link" href="#">Low Range</a></li>
<li class="page-item" style="text-align: center; width: 50%;"><a class="page-link" href="#">Normal Range</a></li>
</ul>
</div>
</div>
<div class="row" style="margin-top: 0px; margin-bottom: 8px;">
<div class="col-12">
<button id="restore-button" class="btn btn-secondary" style="width: 100%;">Restore AudioMoth Gain Settings</button>
</div>
</div>
</div>
</body>
<script>
window.jQuery = window.$ = require('jquery');
</script>
<script src="./node_modules/bootstrap/dist/js/bootstrap.bundle.js"></script>
<script src="js/gainControl.js" charset="utf-8"></script>
</html>