-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (59 loc) · 1.01 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
* {
margin: 0;
padding: 0;
}
*,
*:before,
*:after {
box-sizing: border-box;
}
body {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background: url('images/drum.jpg');
font-family: 'Mochiy Pop P One', Arial, Helvetica, sans-serif;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.key {
width: 95px;
height: 100px;
background-color: rgba(0, 0, 0, 0.438);
border: 4px solid #000;
border-radius: 6px;
transition: all 0.07s;
}
.legend {
text-align: center;
color: #ffc600;
letter-spacing: 1px;
font-family: Arial, Helvetica, sans-serif;
text-transform: uppercase;
}
.list {
list-style: none;
display: flex;
justify-content: space-between;
width: 100%;
margin-top: 20%;
}
.symbol {
color: #fff;
font-size: 35px;
text-align: center;
margin-top: 6px;
margin-bottom: 10px;
}
.playing {
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 10px #ffc600;
}