blob: 2db7e2f8e6ddd37d49af792881a233d0acaad52a (
plain)
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
|
<html>
<head>
<title>cells</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<style>
body {
font-family: Helvetica, sans-serif;
font-weight: 300;
font-size: 13px;
transition: background-color 100ms;
background-image: url(./img/imBreak_1340193016_tumblr_m5vynpMYYg1qiluqao1_500_.png);
background-position: top right;
background-repeat: no-repeat;
background-attachment: fixed;
}
div {
display: inline-block;
}
.desktop body {
user-select: none;
}
.top {
display: block;
margin-top: 10px;
margin-bottom: 10px;
}
.tools {
position: fixed;
top: 50%;
left: 50%;
transform: translate3d(-50%, -50%, 0);
width: 400px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
</style>
</head>
<body>
<div>
<div class='tools'>
<div class="top">
<canvas nx="number" label="tempo" id="tempo"></canvas><br>
<canvas nx="select" id="scale"></canvas>
</div>
<div>
</div>
</div>
</body>
<script>
var s = document.createElement('script');
s.setAttribute('src','bundle.js?' + Date.now());
document.body.appendChild(s)
</script>
</html>
|