-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
45 lines (40 loc) · 722 Bytes
/
styles.css
File metadata and controls
45 lines (40 loc) · 722 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
body {
font-family: Arial;
text-align: center;
background-color: #fffee7;
}
.board {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-gap: 5px;
margin: 20px auto;
width: 320px;
}
.cell {
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2em;
background: white;
border: 2px solid #333;
cursor: pointer;
}
.cell.taken {
cursor: not-allowed;
}
.status {
font-size: 1.5em;
margin: 10px;
}
.reset {
padding: 10px 20px;
font-size: 1em;
margin-top: 10px;
cursor: pointer;
background-color: #53a6ff;
color: white;
border: none;
border-radius: 5px;
}