-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (66 loc) · 1.45 KB
/
style.css
File metadata and controls
74 lines (66 loc) · 1.45 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
@import url(https://fonts.google.com/specimen/Poppins?query=poppins);
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
min-height: 100vh;
align-items: center;
justify-content: center;
background-color: rgb(15, 25, 56);
background-image: url("https://www.sonor.com/fileadmin/user_upload/Drums/Sonor-Drums-Drumset.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.sounds {
display: grid;
grid-template-areas: "k k k k k k k k k";
gap: 15px;
}
.key {
width: 75px;
height: 75px;
text-align: center;
border: 1px solid white;
border-radius: 10%;
align-content: center;
grid-area: "k";
background-image: transparent;
backdrop-filter: blur(2px);
transition: .07s ease-in-out;
}
.button-key {
font-size: 1.5rem;
font-weight: 600;
color: white;
}
span {
font-size: 0.8rem;
color: rgb(212, 241, 81);
font-weight: 600;
}
.bu-key {
background-color: transparent;
height: 100%;
width: 100%;
border-radius: 10%;
}
.playing {
transform: scale(1.1);
border-color: rgb(212, 241, 81);
box-shadow: rgb(212, 241, 81) 0 0 10px;
}
@media only screen and (max-width:991px){
.sounds {
display: grid;
grid-template-areas:
"k k k"
"k k k"
"k k k";
gap: 15px;
}
}