-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
70 lines (59 loc) · 1.19 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
body {
text-align: center;
background-image: linear-gradient(90deg, #FF9A8B 0%, #FF6A88 55%, #FF99AC 100%);
font-family: "Arvo", cursive;
height: 100%;
}
h1 {
margin-top: 5%;
color: #fbe8d3;
font-family: "Arvo", cursive;
text-shadow: 3px 0 #928a97;
font-size: 5rem;
}
.drum-kit {
margin-top: 10%;
padding-bottom: 15%;
}
.drum {
width: 9.375rem;
height: 9.375rem;
border: 10px solid #FC575E;
margin: 1.2%;
border-radius: 15px;
line-height: 2;
font-weight: 900;
font-family: 'Arvo', cursive;
font-size: 5rem;
color: #5b58f5;
text-shadow: 3px 0 #283149;
display: inline-block;
text-align: center;
margin: 10px;
outline: none;
}
.w {
background-image: url(/assets/images/tom1.png);
}
.a {
background-image: url(/assets/images/tom2.png);
}
.s {
background-image: url(/assets/images/tom3.png);
}
.d {
background-image: url(/assets/images/tom4.png);
}
.j {
background-image: url(/assets/images/crash.png);
}
.k {
background-image: url(/assets/images/kick.png);
}
.l {
background-image: url(/assets/images/snare.png);
}
.pressed {
box-shadow: 0 3px 4px 0 #ffe4e4;
opacity: 0.5;
}