blob: 575d11c0f5e4abc9193a341999e1dec4feac77bd (
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
|
svg {
font-family: "IBM Plex Arabic";
font-size: 25pt;
}
.button.unused {
opacity: 0.6;
}
.button .label .layer-1 {
}
.button.modifier .label .layer-1 {
font-size: 80%;
}
.button .label .layer-2, .button .label .layer-3, .button .label .layer-4 {
font-size: 80%;
font-weight: 200;
}
.button .label .controlchar {
font-size: 40%;
font-family: sans-serif;
}
.button .cap {
fill: #eee8d5;
}
.button .cap.highlight {
fill: #dc322f; /* red */
filter: blur(0.5em);
}
.button.finger-little .cap.shadow {
fill: #dc322f; /* red */
}
.button.finger-ring .cap.shadow {
fill: #268bd2; /* blue */
}
.button.finger-middle .cap.shadow {
fill: #d33682; /* magenta */
}
.button.finger-index .cap.shadow {
fill: #6c71c4; /* violet */
}
.button.finger-thumb .cap.shadow {
fill: #2aa198; /* cyan */
}
.button .label {
fill: #657b83;
}
.button .label.shadow {
fill: #fdf6e3;
}
.button .controllabel {
stroke: #657b83;
fill: none;
}
.button .controllabel.shadow {
stroke: #fdf6e3;
fill: none;
}
.button .marker {
stroke: #fdf6e3;
}
.button .marker.shadow {
stroke: #93a1a1;
}
|