-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
64 lines (53 loc) · 954 Bytes
/
main.css
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
body{
margin-top: 20px;
margin-left: 40px;
}
#canvas{
margin: 20px;
}
.button{
background-color: #4CAF50; /* Green */
border: 5px solid #4CAF50;
color: white;
padding: 7px 20px;
margin-left: 20px;
margin-right: 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
border-radius: 12px;
}
.button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
cursor: pointer;
}
.button:active{
Background-color: #2c522d;
border: 5px solid rgb(47, 65, 47);
box-shadow: 0 5px 10px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}
.row{
display: flex;
flex-direction: row;
}
.cell{
width: 20px;
height: 20px;
border: 1px solid #c2c2c2;
}
.cell.wall{
background-color: black;
}
.cell.start{
background-color: green !important;
}
.cell.end{
background-color: red;
}
.cell.visited{
background-color: blue;
}
.cell.path{
background-color: yellow;
}