-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrumkit.css
67 lines (57 loc) · 1.04 KB
/
drumkit.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
57
58
59
60
61
62
63
64
65
66
67
body,html {
margin: 0;
padding: 0;
font-family: verdana;
background-color: #f3a683;
}
.header {
text-align: center;
margin-top: 100px;
}
h1 {
font-family: 'Bungee Shade', verdana;
font-size: 40px;
color: #fff;
}
p {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 14px;
color: #fff;
}
img {
width: 300px;
}
.container {
display: flex;
flex: 1;
min-height: 30vh;
align-items: center;
justify-content: center;
}
.key {
border: .1rem solid #fff;
border-radius: .5rem;
margin: 0.5rem;
font-size: 0.2rem;
padding: 1rem 0rem;
transition: all .07s ease;
width: 6rem;
text-align: center;
color: white;
background: #f3a683;
}
.playing {
transform: scale(1.1);
border-color: #f19066;
box-shadow: 0 0 1rem #f19066;
}
kbd {
display: block;
font-size: 2.5rem;
}
.sound {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: .1rem;
color: #fff;
}