-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
47 lines (43 loc) · 848 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
body {
margin: 0;
background-image: url('./assets/background.jpeg');
background-size: cover;
}
.container {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.beatbox {
width: 600px;
height: 600px;
background: #333;
border-radius: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-content: space-evenly;
}
.beat {
width: 150px;
height: 150px;
flex-basis: 29%;
display: flex;
justify-content: center;
align-items: center;
}
.beat .button {
width: 120px;
height: 120px;
border-radius: 10px;
border: 5px solid aqua;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-family: sans-serif;
font-size: 2em;
transition: all 0.5s;
}