-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
81 lines (67 loc) · 1.53 KB
/
index.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
body {
overflow-x: hidden; /* Hide scrollbars */
background-color: white;
animation-name: example;
animation-duration: 4s;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Opera and Firefox */
}
@keyframes example {
from {background-color: palevioletred;}
to {background-color:blueviolet;}
}
#panel {
margin: 5px 5px 5px 5px;
}
#panel {
padding: 3px 3px 3px 3px;
}
#p_path_found {
display: none;
}
.box {
height: 20px;
width: 20px;
display: inline-block;
vertical-align: middle;
}
.text {
margin-left: 5px;
vertical-align: middle;
}
#discovered_box {
background-color: rgb(240, 240, 255);
}
#visited_box {
background-color: rgb(0, 255, 255);
}
.line {
height: 5px;
width: 40px;
display: inline-block;
vertical-align: middle;
}
.text {
margin-left: 5px;
vertical-align: middle;
}
#a8 {
background-color: rgb(0, 255, 0);
}
#a4 {
background-color: rgb(255, 0, 0);
}
#dijkstra {
background-color: rgb(0, 0, 255);
}
#best {
background-color: rgb(255, 255, 255);
}