-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (65 loc) · 1.04 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/** Page style */
/** Envelope / Operator style */
div.operator,
div.envelope {
width: 350px;
height: 250px;
border: thin solid black;
position: relative;
}
div.envelope .title,
div.operator .title {
color: white;
background: black;
font-weight: bold;
padding: 4px;
display:table;
width:342px;
}
div.envelope .swap,
div.operator .swap {
position:absolute;
right:0.1em;
bottom:0.1em;
}
div.envelope th {
font-weight: normal;
}
div.envelope canvas {
padding: 5px;
margin:5px;
}
/** Keyboard Style */
#keyboard {
position: relative;
}
div.whitekey {
height: 200px;
width: 39px;
border-right: 1px solid black;
border-top: 1px solid black;
border-bottom: 1px solid black;
float: left;
text-align:center;
}
div.blackkey {
width: 30px;
height:100%;
float: left;
background: black;
margin-left: 5px;
margin-right: 5px;
}
div.black {
position: absolute;
float: left;
z-index: 1;
left: 20px;
height:110px;
}
div.blackcont {
height: 100%;
float: left;
margin-right: 40px;
position:relative;
}