-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtic.css
More file actions
38 lines (37 loc) · 725 Bytes
/
tic.css
File metadata and controls
38 lines (37 loc) · 725 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
body {
font-family: sans-serif;
text-align: center;
margin-top: 50px;
}
h1 {
margin-bottom: 20px;
}
.board {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-template-rows: repeat(3, 100px);
gap: 5px;
justify-content: center;
margin-bottom: 20px;
}
.cell {
background: #f0f0f0;
font-size: 2.5rem;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: 2px solid #333;
}
.cell:hover {
background: #e0e0e0;
}
#message {
font-size: 1.2rem;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
font-size: 1rem;
cursor: pointer;
}