-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (51 loc) · 769 Bytes
/
styles.css
File metadata and controls
62 lines (51 loc) · 769 Bytes
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
.main {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
}
.midi-info {
float: right;
}
.indicators {
height: 60px;
width: 120px;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
}
.indicator {
border-radius: 100%;
width: 50px;
height: 50px;
background-color: red;
opacity: 0;
}
.synth-input {
margin: 10px;
display: flex;
}
.synth-input > * {
margin-left: 10px;
}
.vertical {
display: flex;
flex-direction: column;
align-items: center;
}
.vertical input[type=range] {
width: 30px;
-webkit-appearance: slider-vertical;
}
/* Recorder */
.recorder-info {
margin-bottom: 10px;
}
.recorder-button {
margin: 10px;
}
input[type="button"] {
width: 90px;
}