forked from sugarlabs/musicblocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeyboard.css
More file actions
79 lines (76 loc) · 1.33 KB
/
keyboard.css
File metadata and controls
79 lines (76 loc) · 1.33 KB
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
76
77
78
79
#keyboard {
height: 135px;
overflow-x: scroll;
overflow-y: hidden;
white-space: nowrap;
border: 1px solid #000;
text-align: center;
cursor: pointer;
position: relative;
}
#countdownContainer {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 200;
background: rgba(53, 53, 53, 0.492);
pointer-events: all;
}
#countdownDisplay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: black;
color: white;
padding: 20px;
border-radius: 10px;
text-align: center;
}
table {
table-layout: fixed;
}
table.white {
top: 0;
left: 0;
height: 120px;
border-spacing: 0 0;
}
table.black {
position: absolute;
border-collapse: separate;
border-spacing: 20px 0;
height: 60px;
top: 17px;
left: 30px;
}
table.white > tbody > tr {
position: relative;
}
table.white > tbody > tr > td {
min-width: 80px;
width: 80px;
max-width: 80px;
height: 100%;
vertical-align: bottom;
border: 1px solid #000;
}
table.black > tbody > tr > td {
min-width: 60px;
width: 60px;
max-width: 60px;
height: 100%;
vertical-align: bottom;
border: 1px solid #fff;
background-color: #000;
color: #fff;
z-index: 100;
}
select.keySelect {
background-color: #fff;
display: inline-block;
width: 50px;
border: 1px solid #000 !important;
}