-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
61 lines (40 loc) · 1.69 KB
/
index.php
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
<html>
<head>
<title>
DRUM_BRAIN
</title>
</head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/jquery.js">
</script>
<script src="/webmidi.js">
</script>
<script src="drum_brain.js">
</script>
<script src="/range.js">
</script>
<div id="menu">DRUM_BRAIN<br></div>
<style>
body{font-size:14px;margin:0px; margin-top: 30px; padding:0px;}
#menu{background:#fff; color:#ffe; width: 100% ;}
.panel{ width:80%; background: #cfcfcf; padding: 10%; margin: auto; background: #bfcfbf; padding-top: 3px; padding-bottom: 3px;margin-bottom: 3px; clear:both; }
.panel2{width:80%; padding:10%; background: #bfcfbf; padding-top: 3px; padding-bottom: 3px;margin-bottom: 3px;}
#log{position:fixed; background:none; color : #000; font-size: 10px; width: 100% ; height: auto; top:1px; right:10px; text-align:right;}
#tempometer{ width: 100%; }
#loopmeter{float:left;}
#outputmeter{float:right; }
.row{ height:80px; clear:both;width: 100%; background: #ddd; text-align: center; font-family:courier; text-transform:uppercase; }
.step{ margin-right:1px; height: 50px; width: 5.9%; background : #eee; border: none; float:left; text-align:center; padding :0px; font-size: 20px; text-align:center;}
.indicator{background:#333; display:none;height: 20px;width: 20px; margin-top:-50px;}
.randicator{background:#ccc; display:none; height: 40px; width: 20px; margin-top:-50px;}
.part2{display:none; background: #bbb;}
#sequencer{padding-bottom: 100%;}
#controller{ padding-top:10px; min-height:100px; width:100%; clear: both;
}
.transport{font-size: 25px; background: #000; color: #fff; }
</style>
<body>
<div id="controller"></div>
<div ID="sequencer"></div>
</body>
</html>