-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (41 loc) · 737 Bytes
/
Copy pathstyle.css
File metadata and controls
47 lines (41 loc) · 737 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
*{
box-sizing: border-box;
}
body{
margin: 0;
height: 100vh;
width: 100vw;
background-color: grey;
display:flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.game-container{
padding: 10px 0 0 0;
height: 90%;
width: 90%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
background-color: white;
}
.board{
height: 70%;
width: 70%;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
grid-gap: 15px;
background-color: black;
}
.tile {
background-color: white;
}
.red {
background-color: red;
}
.blue {
background-color: blue;
}