Skip to content

Commit 356426c

Browse files
committed
added styles for grid
1 parent a1d8f7f commit 356426c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/grid.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
.cell {
2+
background-color: black;
3+
width:30px;
4+
height: 30px;
5+
float: left;
6+
box-sizing: border-box;
7+
}
8+
.grid {
9+
background-color: yellow;
10+
margin:auto;
11+
}
12+
.start-cell {
13+
background-color: green;
14+
}
15+
.end-cell {
16+
background-color: red;
17+
}
18+
.visited-cell {
19+
background-color: purple;
20+
}

0 commit comments

Comments
 (0)