-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathCSS
85 lines (70 loc) · 1.01 KB
/
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
body {
font: 14px "Century Gothic", Futura, sans-serif;
margin: 20px;
}
.active {
font-weight: 600;
}
.inactive {
font-weight: normal;
}
ol, ul {
padding-left: 30px;
}
.board-row:after {
clear: both;
content: "";
display: table;
}
.status {
margin-bottom: 10px;
}
.square {
background: #fff;
border: 1px solid #999;
float: left;
font-size: 24px;
font-weight: bold;
line-height: 34px;
height: 34px;
margin-right: -1px;
margin-top: -1px;
padding: 0;
text-align: center;
width: 34px;
}
.square:hover {
outline: none;
background: #fff1d3;
}
.square:focus {
outline: none;
background: #fff;
}
.kbd-navigation .square:focus {
background: #ddd;
}
.winLine {
color: #07851c;
/*background-color: rgb(252, 224, 99);*/
}
.draw {
text-align: center;
width: 102px;
height: 102px;
background-color: #ddd;
padding: 20px;
}
.win {
text-align: center;
}
.reset {
padding: 5px;
}
.game {
display: flex;
flex-direction: row;
}
.game-info {
margin-left: 20px;
}