-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (43 loc) · 984 Bytes
/
Copy pathstyle.css
File metadata and controls
48 lines (43 loc) · 984 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
body {
font-family:sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: hsla(275, 95%, 67%, 0.412);
}
h1 {
margin: 20px;
box-shadow: 5px 5px 10px rgb(130 85 85);
}
#gameBoard {
display: grid;
grid-template-columns: repeat(3, 100px);
grid-template-rows: repeat(3, 100px);
gap: 3px;
}
.cell {
width: 100px;
height: 100px;
background-color: #53dba5c9;
border: 2px solid rgb(99, 74, 9);
display: flex;
align-items: center;
justify-content: center;
font-size: 2em;
cursor: pointer;
}
#restartButton {
margin-top: 10px;
padding: 20px;
font-size: 1rem;
cursor: pointer;
border-radius: 10px;
box-shadow: 15px 11px 2px rgba(1, 1, 2, 0.2);
}
#statusMessage {
margin-top: 20px;
font-size: 1.8rem;
}