-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
56 lines (56 loc) · 1 KB
/
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
body {
height: 100vh;
padding: 0px;
margin: 0px;
}
.container {
width: 100vw;
height: 100vh;
background-image: url("background.jpeg");
background-size: cover;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.beatbox {
width: 600px;
height: 600px;
background-color: #333333;
border-radius: 20px;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
flex-wrap: wrap;
}
.beat {
color: white;
border: 1px solid #333333;
width: 150px;
height: 150px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.button {
width: 120px;
height: 120px;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
font-size: 2em;
border-radius: 5px;
transition: 0.3s all;
}
.aqua {
border: 5px solid aqua;
}
.purple {
border: 5px solid #ff00ff;
}
.white {
border: 5px solid white;
}