-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (53 loc) · 1.06 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
body{
background-image:url(./Resources/1D-concert.jpg);
background-size:cover;
}
h1{
font-family:cursive;
font-size:48px;
color:rgb(255, 217, 0);
display:block;
text-shadow:0 0 10px red;
width:30%;
margin:50px auto;
}
.keys {
max-height:70%;
max-width:80%;
margin: 0 auto;
display:flex;
position:relative;
top:120px;
align-items: center;
justify-content: center;
}
.key {
border: 5px solid black;
border-radius: 10px;
font-size: 10px;
margin: 15px;
transition: all .1s;
width:20px;
padding:10px;
padding-left:40px;
padding-right:45px;
text-align: center;
color:rgb(233, 110, 110);
background: rgba(#111F28, 0.9);
}
kbd {
display: block;
font-size: 50px;
font-weight: bold;
text-align:center;
color:rgb(255, 217, 0);
}
.playing{
transform:scale(1.1);
border-color:gold;
box-shadow:0 0 10px gold;
color:gold;
}
.sound{
text-align:left;
}