-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (63 loc) · 1.02 KB
/
styles.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
/* Palette URL: http://paletton.com/#uid=70s0u0kllll9msUfmp7rkhzzYdM */
.diagram {
stroke-width: 0px;
fill-opacity: 0.0;
}
.body {
fill: #e6c88c;
fill-opacity: 1.0;
stroke: #b5975a;
}
.leg {
stroke-width: 3px;
fill-opacity: 0.0;
pointer-events: none;
}
.unconnectedLeg {
stroke: #e03434;
}
.connectedLeg {
stroke: #777777;
}
.finger {
fill-opacity: 1.0;
}
.unconnectedFinger {
fill: #e03434;
stroke: #e03434;
stroke-width: 1px;
}
.connectedFinger {
fill: #777777;
stroke: #afafaf;
stroke-width: 2px;
}
.breadboard {
stroke: #afafaf;
fill-opacity: 0.0;
}
.strip,
.hole {
fill: white;
stroke: #afafaf;
fill-opacity: 1.0;
}
.holeDecorator {
fill: white;
stroke: #afafaf;
stroke-width: 3px;
}
.palette {
fill-opacity: 0.0;
stroke-opacity: 0.0;
}
.paletteItem {
fill-opacity: 0.0;
-webkit-filter: grayscale(1);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: url(#grayscaleFilter);
filter: grayscale(100%);
filter: gray;
}