-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrum-machine.css
56 lines (51 loc) · 1 KB
/
drum-machine.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
.container{
background-color: rgb(255, 255, 255);
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
}
.machine{
display: flex;
flex-flow: row wrap;
justify-content: center;
width: 400px;
background-color: rgb(255, 0, 0);
padding: 0;
margin: 0;
gap: 5px;
height: 500px;
padding: 10px;
border-radius: 5%;
}
.drum-pad{
display: flex;
flex-wrap: wrap;
width: 30%;
background-color: cornflowerblue;
text-align: center;
justify-content: center;
align-items: center;
border: 1px solid black;
color: white;
border-radius: 10%;
}
.volume{
font-size: larger;
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(255, 0, 51);
text-align: center;
color: white;
border: 1px solid rgb(255, 0, 0);
border-radius: 3%;
}
.display{
font-size: larger;
font-family: Arial, Helvetica, sans-serif;
margin-left: 10px;
text-align: center;
background-color: rgb(255, 0, 51);
color: white;
border: 1px solid rgb(255, 0, 0);
border-radius: 3%;
}