-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
86 lines (69 loc) · 1.14 KB
/
index.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
.border {
fill: transparent;
stroke: rgb(117, 117, 117);
stroke-width: 6px;
}
.cellUnknown {
fill: white;
stroke: rgb(117, 117, 117);
}
.hintUnknown {
fill: black;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.crossUnknown {
visibility: hidden;
}
.cellEmpty {
fill: rgb(240, 240, 240);
stroke: rgb(117, 117, 117);
}
.hintEmpty {
fill: black;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.crossEmpty {
visibility: visible;
stroke: rgb(200, 200, 200);
}
.cellFull {
fill: black;
stroke: rgb(117, 117, 117);
}
.hintFull {
fill: white;
font-weight: bold;
font-family: Arial, Helvetica, sans-serif;
}
.crossFull {
visibility: hidden;
}
.applied {
fill: rgb(130, 130, 130);
}
.hintError {
fill: red;
}
.cursor {
stroke: rgb(201, 30, 34);
stroke-width: 3px;
fill: transparent;
}
.cursorHide {
visibility: hidden;
}
.body {
background-color: rgb(243, 240, 225);
}
.toolbar {
padding-left: 20px;
padding-top: 10px;
}
.tool {
padding: 5px;
}
.toolDisabled {
color: rgb(186, 186, 186);
}