-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (59 loc) · 919 Bytes
/
style.css
File metadata and controls
60 lines (59 loc) · 919 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
49
50
51
52
53
54
55
56
57
58
59
60
/* CSS styles for the grid */
body {
text-align: center;
}
#grid-container {
display: inline-block;
margin-top: 20px;
}
table {
border-collapse: collapse;
margin: auto;
}
td {
width: 20px;
height: 20px;
border: 1px solid black;
}
.start {
background-color: green;
}
.end {
background-color: red;
}
.obstacle {
background-color: brown;
}
.wall {
background-color: black;
}
.visited {
background-color: yellow;
}
.path {
background-color: blue;
}
/* CSS styles for the navigation buttons */
#button-container {
margin-top: 10px;
}
.algo-button,
.action-button {
display: inline-block;
padding: 5px 10px;
border: 1px solid black;
cursor: pointer;
transition: background-color 0.3s, color 0.3s;
}
.algo-button:hover,
.action-button:hover {
background-color: black;
color: white;
}
.action-button {
margin-bottom: 10px;
}
.active {
background-color: black;
color: white;
}