-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (71 loc) · 1.35 KB
/
style.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
body {
background: #000;
width: 100%;
color:#fff;
font-family: 'VT323', monospace;
background-image: url("http://www.transparenttextures.com/patterns/3px-tile.png");
}
#mode1:hover,#mode2:hover, #icon-o:hover, #icon-x:hover{ cursor: pointer; }
.board-wrap {
width: 300px;
margin: 50px auto;
background: #fff;
height: 334px;
}
.game-init {
width: 300px;
height: 300px;
background-color: #000;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
}
.game-board {
color:#000;
}
.game-result {
float: left;
color: #000;
text-align: left;
line-height: 28px;
padding-left: 8px;
font-size: 34px;
}
.mode-select {
padding-top: 30px;
display: flex;
justify-content: center;
align-items: center;
}
ul {
list-style: none;
}
.row {
margin: 0!important;
height: 100px;
}
.cell {
border-right: 1px solid #000;
border-bottom: 1px solid #000;
width: 100px;
height: 100px;
float: left;
display: flex;
justify-content: center;
align-items: center;
}
.game-status {
background: yellow;
overflow: hidden;
}
.restart {
float: right;
border-radius: 0px;
}
.game-board {
font-size: 60px;
}
.board {
font-size: 24px;
}