-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
42 lines (40 loc) · 818 Bytes
/
index.css
File metadata and controls
42 lines (40 loc) · 818 Bytes
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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
.keys{
display: flex;
justify-content: space-around;
align-items: center;
height: 100%;
background:url(images/img.avif) center no-repeat;
background-size: cover;
}
.key{
width: 70px;
height: 70px;
padding: 10px 0 0 ;
display: flex;
flex-direction: column;
align-items: center;
gap: 5px;
color: white;
font-size: 20px;
font-weight: bold;
background-color: rgba(0, 0, 0, 0.507);
text-align: center;
border-radius: 5px;
border: solid black 4px;
transition: all 0.07s;
}
.sound{
font-size: 13px;
color: goldenrod;
}
.playing{
transform: scale(1.1);
border-color: #ffc600;
box-shadow: 0 0 10px #ffc600;
}