-
Notifications
You must be signed in to change notification settings - Fork 1
/
sudoku.css
86 lines (86 loc) · 1.41 KB
/
sudoku.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
div#sudoku-wrap {
position: relative;
margin: auto auto;
}
div#sudoku {
position: relative;
margin-top: 2em;
margin-bottom: 2em;
}
div#controls {
position: relative;
}
div#controls a.chooser {
display: block;
float: left;
height: 20px;
width: 20px;
margin: 10px 5px;
border: 1px solid black;
text-decoration: none;
text-align: center;
color: blue;
}
div#controls a.chooser.current {
font-weight: bold;
background-color: blue;
color: white;
}
div#game-controls {
position: relative;
clear: left;
}
.cell span.value {
font-size: 16px;
text-align: center;
}
div.guess {
position: absolute;
font-size: 7px;
line-height: 8px;
}
table.sudoku {
border: 1px solid black;
border-spacing: 0;
border-collapse: collapse
}
table.sudoku td {
border: 1px solid #bbb;
width: 3em;
height: 3em;
margin: 0;
position: relative;
text-align: center;
vertical-align: middle;
}
table.sudoku td.tdiff {
border-top: 2px solid black;
}
table.sudoku td.bdiff {
border-bottom: 2px solid black;
}
table.sudoku td.ldiff {
border-left: 2px solid black;
}
table.sudoku td.rdiff {
border-right: 2px solid black;
}
table.sudoku td.conflict {
color: red;
}
table.sudoku td.color_0 {
background-color: transparent;
}
table.sudoku td.color_1 {
background-color: #eef;
}
table.sudoku td.color_2 {
background-color: #efe;
}
table.sudoku td.color_3 {
background-color: #fee;
}
table.sudoku td input {
font-size: 14px;
text-align: center;
}