forked from polarity/app.spectrum.analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
61 lines (60 loc) · 1015 Bytes
/
styles.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
body {
margin: 0;
padding: 0;
background-color: #1a1a1a;
color: #ffffff;
font-family: Arial, sans-serif;
}
#content {
padding: 10px;
}
a, a:link, a:visited, a:active {
color: #03afd9;
text-decoration: none;
}
a:hover {
color: #99e6fa;
text-decoration: underline;
}
canvas {
display: block;
width: 100%;
height: 80vh;
}
#controls {
background-color: #2a2a2a;
padding: 10px;
border-top: 1px solid #444;
}
#controls-toggle {
margin: 0px 0px 10px 0px;
background-color: #444;
color: #fff;
border: none;
padding: 5px 10px;
cursor: pointer;
width: 100%;
text-align: left;
}
#controls-start-button {
margin: 0px 0px 10px 0px;
background-color: #444;
color: #fff;
border: none;
padding: 5px 10px;
cursor: pointer;
width: 100%;
text-align: left;
}
#controls-content {
display: none;
padding-top: 10px;
}
#controls-content.visible {
display: block;
}
select, input[type="range"], input[type="color"] {
display: block;
margin: 10px 0;
width: 100%;
}