-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathreghex.css
57 lines (56 loc) · 908 Bytes
/
reghex.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
svg {
display: none;
background: #ddd;
}
svg a {
font-size: 20pt;
}
svg a:hover {
fill: red;
}
.cell text , text.buttons {
text-anchor: middle;
dominant-baseline: central;
}
.edge text {
text-anchor: end;
}
.cell path {
fill: white;
stroke: black;
}
.clue text {
font-weight: bold;
}
.clue path {
fill: gray;
}
.selectable:hover {
cursor: pointer;
}
.selectable:hover path {
stroke-width: 2;
fill: #ff8;
}
.selectable:hover text {
fill: black;
}
.focused .selected path {
stroke-width: 2;
fill: #8ff !important;
}
.focused .selected text {
fill: black !important;
}
.A-success path,.B-success path,.C-success path {
fill: #8f8;
}
.A-success.B-success path,.B-success.C-success path,.C-success.A-success path {
fill: #4d4;
}
.A-success.B-success.C-success path {
fill: #2b2;
}
.A-failure path,.B-failure path,.C-failure path {
fill: #e66 !important;
}