-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (86 loc) · 1.22 KB
/
style.css
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
border: 0;
padding: 0;
background-color: #333;
color: #ddd;
font-size: 12pt;
font-family: "Helvetica", "Arial", sans-serif;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
}
canvas {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: #333;
}
.component {
visibility: hidden;
z-index: -1000;
position: absolute;
padding: 0;
margin: 0;
}
define .item-background {
color: #9cf;
}
define .item-standby {
color: #69c;
}
define .item-standby-light {
color: #8be;
}
define .item-highlight {
color: #369;
}
define .item-highlight-light {
color: #58b;
}
define .looper-marker-standby {
color: #c88;
}
define .looper-marker-highlight {
color: #c00;
}
define .button {
font: 14pt "Helvetica";
}
#looper {
top: 50px;
left: 50px;
right: 50px;
bottom: 50px;
}
#begin {
left: 10px;
bottom: 10px;
width: 50px;
height: 50px;
}
#play {
left: 60px;
bottom: 10px;
width: 50px;
height: 50px;
}
#record {
left: 110px;
bottom: 10px;
width: 50px;
height: 50px;
}
#end {
left: 160px;
bottom: 10px;
width: 50px;
height: 50px;
}
#download {
right: 10px;
bottom: 10px;
width: 150px;
height: 50px;
}