-
Notifications
You must be signed in to change notification settings - Fork 0
/
keyboard-style.css
88 lines (71 loc) · 1.35 KB
/
keyboard-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
79
80
81
82
83
84
85
86
87
body {
background-color: #cfc;
font-family: sans-serif;
text-align: center;
}
tr.keyboard {
height: 2em;
}
th.whitehk:hover { background: gold; }
th.white:hover { background: gold; }
td.black:hover { background-color: darkgoldenrod; }
td.black {
background-color: black;
text-align: center;
color: white
}
td.white {
border: 1px;
border-style: solid solid none solid;
border-color: black;
color: transparent;
text-align: center;
}
th.white {
border: 1px;
border-style: none solid solid solid;
background-color: white;
text-align: center;
}
th.whitehk {
border: 1px;
border-style: none solid solid solid;
background-color: white;
text-align: center;
text-decoration: underline;
}
table.keyboard {
border: 1px;
border-collapse: collapse;
border-style: solid solid solid solid;
table-layout: fixed;
background: white;
width: 100%;
}
tt {
color: red; font-size: 14pt;
}
.lobe {
width: 300px;
border: 1px solid;
padding: 1em;
border-radius: 3em 1em;
position: absolute;
}
.player {
background: #ffc;
}
.theory {
background: #fdc;
}
.boring {
background: #dfc;
}
span.button:hover { background: gold; }
span.button {
border: 1px solid;
padding: .5ex;
margin: .5ex;
border-radius: .5em;
background: #ccf;
}