-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
55 lines (44 loc) · 682 Bytes
/
index.css
File metadata and controls
55 lines (44 loc) · 682 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
body {
font-family: 'MonoLisa Nerd Font', monospace;
}
.buttons {
margin-bottom: 1em;
}
.visualizers {
display: flex;
flex-wrap: wrap;
gap: 1em;
}
.visualizers svg {
width: 800px;
}
.visualizers canvas {
background-color: blue;
}
.synth-controls {
display: flex;
gap: 0.5em;
margin-bottom: 1em;
}
.synth-controls button {
display: block;
}
button.active {
background-color: black;
color: white;
}
.power-button {
color: red;
}
.power-button.power-on {
color: green;
}
#keyboard {
transform: translateY(30%);
opacity: 0;
transition: transform 0.3s ease-in, opacity 0.3s;
}
#keyboard.active {
transform: translateY(0);
opacity: 1;
}