-
Notifications
You must be signed in to change notification settings - Fork 0
/
piano.css
55 lines (46 loc) · 772 Bytes
/
piano.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
body {
background-color: azure;
}
.container {
margin: 10% auto;
text-align: center;
}
.white-keys kbd {
background-color: white;
display: inline-block;
height: 300px;
width: 60px;
margin-left: -5px;
border: grey 2px solid;
text-align: center;
font-family: 'Yellowtail', cursive;
line-height: 500px;
}
.black-keys kbd {
background-color: black;
color: white;
display: inline-block;
height: 200px;
width: 40px;
border: black 1px solid;
text-align: center;
font-family: 'Yellowtail', cursive;
line-height: 300px;
position: relative;
bottom: 303px;
}
#w {
right: 70px;
}
#e {
right: 50px;
}
#t {
right: -30px;
}
#y {
right: -50px;
}
#u {
right: -70px;
}