-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (53 loc) · 934 Bytes
/
style.css
File metadata and controls
63 lines (53 loc) · 934 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
#game-container {
text-align: center;
}
button {
margin-top: 10px;
padding: 8px 16px;
font-size: 16px;
}
.cell {
flex: 1;
width: 50px;
height: 50px;
line-height: 50px;
border: 1px solid #000;
box-sizing: border-box;
cursor: pointer;
font-size: 24px;
}
.row {
display: flex;
}
#board {
display: flex;
flex-wrap: wrap;
max-width: 240px;
margin: auto;
margin-top: 50px;
justify-content: center;
align-items: center;
}
#board .row:first-child .cell {
border-top: none;
}
#board .row:last-child .cell {
border-bottom: none;
}
#board .cell:first-child {
border-left: none;
}
#board .cell:last-child {
border-right: none;
}
#selection-container {
display: inline-block;
margin-right: 20px;
text-align: left;
}
#button-container {
display: inline-block;
margin-right: 20px;
position: relative;
top: -10px;
}