-
Notifications
You must be signed in to change notification settings - Fork 0
/
#80-piano.htm
75 lines (67 loc) · 1.15 KB
/
#80-piano.htm
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
71
72
73
74
75
<div class="a"></div>
<div class="b">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="c">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<style>
body {
background: #998235;
}
div {
position: absolute;
}
.a {
width: 180px;
height: 100px;
background: #191919;
border-radius: 10px;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.b {
left: 18.7%;
top: 36.1%;
}
ul {
list-style-type: none;
}
.b>ul>li {
display: inline-block;
width: 20px;
height: 70px;
background: #FFF;
border-radius: 5px;
margin-right: 5px;
}
.c {
top: 31.3%;
left: 22.5%
}
.c>ul>li {
display: inline-block;
width: 15px;
height: 50px;
background: #191919;
margin-right: 10px;
}
.c>ul>li:nth-child(2) {
margin-right: 35px
}
</style>