-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
69 lines (54 loc) · 1.27 KB
/
theme.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
table.game-board td.even-cell {
background-color: rgb(6, 42, 58);
}
table.game-board td.odd-cell {
background-color: rgb(6, 42, 58);
}
table.game-board td.odd-cell.used-cell, table.game-board td.even-cell.used-cell {
background-color: rgb(127, 71, 221);
}
table.game-board td.odd-cell.possible-cell, table.game-board td.even-cell.possible-cell {
background-color: rgb(140, 198, 63);
}
table.game-board td.odd-cell.impossible-cell, table.game-board td.even-cell.impossible-cell {
}
table.game-board td.odd-cell.active-cell, table.game-board td.even-cell.active-cell {
background-color: rgb(0, 169, 157);
}
table.game-board td.head-col, table.game-board td.head-row, table.game-board td.top-left {
display: none;
}
#message {
width: 80%;
}
#clock {
width: 20%;
padding: 10px;
}
body {
font-family: "Bauhaus 93",Arial,Helvetica,sans-serif;
background-color: rgb(0, 27, 39);
text-align: center;
color: white;
}
.logo {
width: 80%;
}
table.game-info, table.game-board {
border: 1px solid rgb(0, 27, 39);
table-layout: fixed;
width: 100%;
}
table td {
padding: 0;
overflow: hidden;
text-align: center;
vertical-align: middle;
}
table.game-board td {
width: 10%;
height: 10%;
}
table.game-info td {
background-color: rgb(6, 42, 58);
}