-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPathfindingVisualizer.css
More file actions
67 lines (56 loc) · 933 Bytes
/
PathfindingVisualizer.css
File metadata and controls
67 lines (56 loc) · 933 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
61
62
63
64
65
66
67
.grid {
margin: 0 0;
background-color: #050801;
}
/* Navbar container */
.navbar {
background-color: #333;
display: flex;
justify-content: space-around;
align-items: center;
padding: 10px;
color: white;
}
/* Navbar buttons */
.nav-button {
background-color: #007acc;
color: white;
margin-left: 2px;
border-radius: 2px;
padding: 10px 10px;
cursor: pointer;
transition: background-color 0.3s;
}
.nav-button:hover {
background-color: #005e9d;
}
/* Navbar nodes */
.nav-nodes {
display: flex;
flex-direction: column;
align-items: center;
}
.nav-node {
margin: 5px;
padding: 5px;
}
.unvisited {
background-color: black;
color: #f7f0f0;
}
.visited {
background-color: #2ebfd8;
color: #000000;
}
.shortest {
background-color: #f3d242;
color: #000000;
}
.starting {
background-color: #4caf50;
color: #ffffff;
}
.target {
background-color: #ff5722;
color: #ffffff;
}