-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
49 lines (44 loc) · 855 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#drum-machine {
display: flex;
align-items: center;
width: 800px;
margin: 0 auto;
margin-top: 200px;
padding: 20px 50px;
border: 1px lightgreen solid;
}
#pad-container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 80px 80px 80px ;
gap: 15px 15px;
grid-template-areas:
". . ."
". . ."
". . .";
}
.drum-pad {
height: 80px;
width: 100px;
border: 1px lightgray solid;
text-align: center;
padding-top: 30px;
cursor: pointer;
}
#display {
height: 50px;
width: 200px;
display: flex;
justify-content: center;
align-items: center;
border: 1px black solid;
margin: auto;
padding: 10px 20px;
background-color: azure;
color: gray
}