-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (91 loc) · 2 KB
/
index.html
File metadata and controls
97 lines (91 loc) · 2 KB
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
<!DOCTYPE html>
<html>
<head>
<title>shortest path</title>
<style>
@font-face {
font-family: "Bungee";
src: url("Bungee-Regular.ttf");
}
html,body {
height: 100%;margin: 0;padding: 0;
font-family: 'Bungee', cursive;
letter-spacing: 4px;
word-spacing: 6px;
font-size: 10px;
}
.isDisabled{
cursor: not-allowed;
opacity: 0.5;
pointer-events: none;
}
.isDisabledClear{
cursor : not-allowed;
}
body{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.container{
display: grid;
width: 1200px;
grid-template-columns: repeat(100, 1fr);
margin-top: 80px;
}
.container *{
border: 1px solid #8d0801;
background-color: white;
height: 10px;
width: 10px;
transition: background-color 0.7s ease-in-out;
}
.navbar{
width: 100%;
position: absolute;
background-color: #8d0801; /*#ef233c;*/
top: 0px;
height: 55px;
display: flex;
flex-direction: row;
justify-content: space-around;
align-items: center;
color: #ebebff;
}
ul{
display: flex;
flex-direction: row;
justify-content: space-around;
list-style-type: none;
}
li{
border-radius: 20px;
margin-right: 20px;
padding: 0px 10px;
font-size: 16px;
}
li:hover{
background-color: white;
color:#8d0801;
}
span{
font-size: 22px;
}
</style>
</head>
<body>
<div class="navbar">
<span>Shortest Path Visualizer</span>
<ul>
<li class="startbtn">Start</li>
<li class="resetbtn">Reset</li>
<li class="instructions">Instructions</li>
</ul>
</div>
<div class="container"></div>
<p>Shortest Path Algorithm visualizer by <a href="https://www.linkedin.com/in/vardhman-jain-881b4b179">Vardhman Jain</a>
<script type="text/javascript" src="howler.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>