-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (82 loc) · 1.27 KB
/
style.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
flex-direction: column;
}
body > div {
display: flex;
gap: 20px;
}
#grid {
display: flex;
flex-direction: column;
gap: 4px;
border: 3px solid #e4ccaf;
width: fit-content;
}
#info {
margin-bottom: 20px;
display: flex;
flex-direction: column;
gap: 10px;
justify-content: center;
}
#info div {
display: flex;
gap: 10px;
align-items: center;
}
#info div input[type="checkbox"] {
margin: 0;
padding: 0;
width: 20px;
height: 20px;
}
#info div label {
font-size: 1rem;
}
#info .size-input {
width: 50px;
}
#info .size-input input {
width: inherit;
}
.row {
display: flex;
gap: 4px;
}
.cell {
width: 50px;
height: 50px;
background-color: bisque;
}
.cell.start-pos {
background-color: rgb(191, 221, 106);
}
.cell.end-pos {
background-color: rgb(218, 157, 71);
}
.cell.path-pos {
background-color: rgb(71, 218, 198);
}
.cell.current-pos {
background-color: rgb(194, 68, 211);
}
.cell.neighbour-pos {
background-color: rgb(250, 11, 91);
}
.cell.obstacle-pos {
background-color: black;
}
.f-cost {
text-align: center;
font-size: 1.5rem;
}
.g-and-h-cost {
display: flex;
justify-content: space-around;
}