-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (60 loc) · 1.45 KB
/
style.css
File metadata and controls
63 lines (60 loc) · 1.45 KB
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
#puzzleContainer table {
border-spacing: 0px;
/* border: solid; */
/* border-width: 1px; */
}
#puzzleContainer td {
border: solid;
border-width: 1px;
width: 25px;
height: 25px;
text-align: center;
}
/* Get right of the top and left borders on the table */
#puzzleContainer table {
border-top: none !important;
border-left: none !important;
}
/* Get rid of the border on the first row */
#puzzleContainer table tr:first-child td{
border-top: none !important;
border-left: none !important;
border-right: none !important;
}
/* Get rid of borders on the first column */
#puzzleContainer table td:first-child{
border-left: none;
border-top: none;
border-bottom: none;
}
/* The most right column... */
#puzzleContainer table tr td:last-child{
border-right-width: 2px !important;
}
/* The bottom row */
#puzzleContainer table tr:last-child td{
border-bottom-width: 2px !important;
}
/* This is the first row of colClues */
/* #puzzleContainer table tr:first-child{ */
#puzzleContainer table tr .colClue{
height: 100px;
vertical-align:bottom;
text-align: center;
}
/* This is the first column of rowClues */
/* #puzzleContainer table td:first-child{ */
#puzzleContainer table td.rowClue{
width: 100px;
text-align: right;
padding-right: 10px;
}
td.pixel.YES {
background-color: black;
}
td.pixel.NO {
background-color: grey;
}
td.clueCell.COMPLETE {
background-color: lightblue;
}