-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (37 loc) · 691 Bytes
/
Copy pathstyle.css
File metadata and controls
42 lines (37 loc) · 691 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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: #f4f4f4;
}
#game {
text-align: center;
}
#board {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-template-rows: repeat(3, 100px);
gap: 10px;
}
.cell {
background-color: #fff;
border: 2px solid #000;
font-size: 2rem;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
#status {
margin-top: 20px;
font-size: 1.2rem;
}
#reset {
margin-top: 10px;
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
}