-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgame.css
More file actions
67 lines (49 loc) · 701 Bytes
/
game.css
File metadata and controls
67 lines (49 loc) · 701 Bytes
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
body {
margin-top: 40px;
}
#stats {
margin: 20px;
width: 300px;
float: left;
}
#stats ul li {
list-style: none;
padding: 10px;
}
#stats ul ul {
padding: 0px;
margin-top: 10px;
}
#stats ul ul li {
padding: 0px;
}
#stats ul li .option-title {
font-weight: bold;
}
#board {
width:400px;
float: left;
}
.dark {
background-color: #999;
}
.light {
background-color: #eee;
}
#board table {
font-size: 36px;
width: 400px;
height: 400px;
align: center;
text-align: center;
margin: 0px;
border: 0px;
border-spacing: 0px;
}
#board table tr td {
height: 12.5%;
width: 12.5%;
}
td.hover {
background-color: lightblue;
}