-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.css
76 lines (63 loc) · 1019 Bytes
/
app.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
body {
background-color: #000;
color: #fff;
font-family: "Arial", Times, serif;
font-size: 12px;
}
#spectrogram:hover {
cursor: pointer;
}
.label {
font-weight: bold;
text-align: right;
}
a {
color: #fff;
}
button {
width: 5rem;
font-size: 12px;
}
#source {
font-size: 12px;
}
input[type=range] {
-webkit-appearance: none;
appearance: none;
border-radius: 10px;
height: 10px;
width: 8rem;
}
#controls {
margin-left: auto;
margin-right: auto;
}
#smoothing-value, #threshold-value {
font-family: monospace;
color: #888888;
}
#pianolizer {
position: relative;
text-align: center;
}
#help {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
right: 0;
z-index: -1;
overflow: hidden;
}
.piano-key {
stroke: #555555; /* also defined in js/visualization.js! */
fill: #000;
}
.piano-key-label {
fill: #555555; /* also defined in js/visualization.js! */
font-family: monospace;
font-size: 12px;
}
#footer {
text-align: center;
}