-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdrumkit.css
More file actions
77 lines (69 loc) · 1.42 KB
/
drumkit.css
File metadata and controls
77 lines (69 loc) · 1.42 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
75
76
77
body{
background-image: url("drums stock photo.jpg");
}
.displaytext{
position: absolute;
display: inline;
width: auto;
height: auto;
margin-top: 5%;
margin-left: auto;
margin-right: auto;
left: 20%;
right: 20%;
padding: 20px;
text-align: center;
justify-content: center;
font-size: 2rem;
font-weight: 500;
font-family: Georgia, 'Times New Roman', Times, serif;
background-color: rgba(0, 0, 0, 0.541);
color: rgb(179, 179, 179);
}
.keybox{
margin: auto;
padding: auto;
height: auto;
width: auto;
position: absolute;
display: flex;
top: 40%;
left: 5%;
right: 5%;
border: 3px solid rgb(87, 87, 87);
background-color: rgba(255, 255, 255, 0.171);
justify-content: space-evenly;
}
.key{
position: relative;
display: inline;
border: 4px solid black;
border-radius: 6px;
background: rgba(58, 58, 58, 0.781);
margin: 1rem;
padding: 0.5rem 0.5rem;
width: auto;
height: auto;
text-align: center;
color: white;
/* font-size: 1.5rem; */
text-shadow: 0 0 5px black;
transition: all 0.08s;
}
.key:hover{
cursor: pointer;
}
.playing{
transform: scale(1.2);
border-color: rgb(173, 173, 0);
box-shadow: 0 0 10px rgb(173, 173, 0);
}
kbd{
color: gold;
font-weight: 600;
font-size: 2.5rem;
}
.sound{
text-transform: uppercase;
font-size: 1.1rem;
}