-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
64 lines (63 loc) · 865 Bytes
/
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
:root {
--bgCol: #114;
--mainCol: #3F3;
--darkCol: #333;
}
body {
margin: 0;
background-color: var(--bgCol);
color: var(--mainCol);
}
button {
border: 1px solid var(--mainCol);
border-radius: 50%;
background-color: var(--bgCol);
color: var(--mainCol);
}
button:focus {
border: 0;
}
#vectorCanvas,
#corCanvas,
#meterCanvas
{
position: absolute;
pointer-events: none;
}
#vectorCanvas {
left: 0;
bottom: 25vh;
width: 70vw;
height: 70vh;
}
#corCanvas {
left: 0;
bottom: 20vh;
width: 70vw;
height: 5vh;
}
#meterCanvas {
right: 0;
bottom: 20vh;
width: 30vw;
height: 75vh;
}
#waveform {
position: absolute;
left: 0;
bottom: 0;
width: 100vw;
height: 20vh;
}
#info {
position: absolute;
top: 0;
right: 0;
text-align: right;
}
#ainfo {
position: absolute;
top: 0;
right: 10vw;
text-align: right;
}