-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 684 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (42 loc) · 684 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
@charset "utf-8";
/* CSS Document */
body {
font-family: Arial, sans-serif;
text-align: center;
background: #f7f7f7;
margin: 0;
padding: 20px;
}
h1 {
margin-bottom: 20px;
}
#game-board {
display: grid;
grid-template-columns: repeat(3, 100px);
gap: 5px;
justify-content: center;
margin: 20px auto;
}
.cell {
width: 100px;
height: 100px;
background: white;
border: 2px solid #333;
font-size: 2.5em;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
}
.cell.taken {
pointer-events: none;
}
#status {
margin: 15px 0;
font-size: 1.2em;
}
#reset {
padding: 10px 20px;
font-size: 1em;
cursor: pointer;
}