-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (53 loc) · 3.69 KB
/
index.html
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
<!DOCTYPE html>
<html style="background-color:#ececec;">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.0.0/animate.min.css">
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=ZCOOL+XiaoWei&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/sweetalert2.all.min.js"></script>
<head>
</head>
<body style="background: transparent;">
<div class="header d-flex justify-content-center mt-1 mb-1" style="flex-direction: column; align-items: center;">
<h1 >PATHFINDER</h1>
</div>
<div class="instructions mx-auto">
<p><i class="fas fa-info-circle"></i> Hold down and drag to create <span style="background:#8590AA;">walls</span></p>
<!-- <i class="fas fa-info-circle"> Instructions</i> <i class="fas fa-route"> Explanations</i> -->
</div>
<div class="container-board mx-auto">
<table class="board mx-auto"></table>
<!-- <div class="row d-flex justify-content-center">
<div class="col-sm-3 legend">
<ul>
<li><span style="background:#5da2d5">Dark blue</span> - start point / evaluated nodes</li>
<li><span style="background:#90ccf4;">Light blue</span> - open nodes / unevaluated nodes</li>
<li><span style="background: #f3d250;">Yellow</span> - destination / end node</li>
</ul>
</div>
</div> -->
</div>
<div class="container-buttons d-flex justify-content-center mt-3" style="padding-bottom: 100px;">
<button class="btn btn-dark button__start">SET START</button>
<button class="btn btn-dark button__end">SET END</button>
<button class="btn btn-dark button__find">GO</button>
<button class="btn btn-dark button__reset">RESET</button>
</div>
<!-- Footer -->
<footer class="fixed-bottom text-right" style="background: #343a40;">
<p class="h6 pr-4 py-2 my-auto">
<a class="badge" href="https://github.com/russellcxl/sorting-visualiser" target="_blank">repo <i class="fab fa-github"></i></a>
<a class="badge" href="https://github.com/russellcxl/" target="_blank">russellcxl <i
class="fas fa-user-astronaut"></i></a>
</p>
</footer>
</body>
<script src="script.js"></script>
</html>