-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (42 loc) · 904 Bytes
/
Copy pathstyle.css
File metadata and controls
63 lines (42 loc) · 904 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
.cell {
width: 100px;
height: 100px;
border: 3px solid #333333;
cursor: pointer;
line-height: 100px;
font-size: 60px;
}
body {
font-family: "Permanent Marker", cursive;
display: grid;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
text-align: center;
padding-top: 30px;
}
h1 {
padding: 30px;
}
.cell:nth-child(1), .cell:nth-child(2), .cell:nth-child(3) {
border-top: none;
}
.cell:nth-child(1), .cell:nth-child(4), .cell:nth-child(7) {
border-left: none;
}
.cell:nth-child(3), .cell:nth-child(6), .cell:nth-child(9) {
border-right: none;
}
.cell:nth-child(7), .cell:nth-child(8), .cell:nth-child(9) {
border-bottom: none;
}
.cell.X, .cell.O {
cursor: not-allowed;
}
.button {
padding: 50px;
}
#winningMessageText {
font-size: large;font-weight: bold;
}