blob: 49f3ba36b10ef5140579caa046a3ef8b35160615 (
plain)
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
|
body {
color: black;
background-color: white;
}
#fretboard {
float: left;
padding-right: 1em;
margin-right: 1em;
}
#fretboard table {
border-collapse: collapse;
}
#fretboard thead {
text-align: center;
}
#fretboard thead .fret3,
#fretboard thead .fret5,
#fretboard thead .fret7 {
font-weight: bold;
}
#fretboard tbody .open {
font-weight: bold;
}
#fretboard td:not(:last-child) {
border-right: 1px solid black;
}
#fretboard tbody tr {
border-top: 1px solid black;
}
#fretboard tbody .selected {
font-style: italic;
text-align: center;
}
#fretboard .muted {
color: grey;
}
#key-picker .notes {
padding-left: 0;
list-style-position: outside;
display: grid;
grid-template-rows: 2;
grid-template-columns: 2em 2em 2em 2em 2em 2em 2em;
counter-reset: notes;
}
#key-picker .notes li:before {
display: grid;
grid-row-start: 2;
content: counter(notes, numeric);
color: grey;
font-size: small;
text-align: center;
}
#key-picker .notes li {
display: grid;
grid-row-start: 1;
counter-increment: notes;
text-align: center;
}
#key-picker .chords {
display: grid;
grid-template-rows: 1;
grid-template-columns: 4em 4em 4em 4em 4em 4em;
padding-left: 0;
}
#key-picker .chords li {
display: grid;
}
|