-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (59 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>311 Grocery List</title>
<!-- App styles -->
<link type="text/css" rel="stylesheet" href="style.css" />
<link type="text/css" rel="stylesheet" href="light.css" title="swap" />
<link type="text/css" rel="stylesheet" href="fireworks.css" />
<link href="https://fonts.googleapis.com/css2?family=Itim&family=Leckerli+One&display=swap" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/reefjs@8/dist/reef.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/reefjs@8/dist/router.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/lodash@4.17.21/lodash.min.js"></script>
<script src="https://kit.fontawesome.com/a367e5e4f1.js" crossorigin="anonymous"></script>
<script src="cookies.js" type="application/javascript"></script>
<script src="helpers.js" type="application/javascript"></script>
<script src="autocomplete.js" type="application/javascript"></script>
</head>
<body>
<div id="main-frame">
<span id="lasers">
<div class="laser beam-blue"></div>
<div class="laser beam-red"></div>
<div class="laser beam-purple"></div>
<div class="laser beam-green"></div>
</span>
<div id="groceryMenu" class="container row">
<button id="menuButton" class="button top left" onclick="toggleMenu()">
<i class="fas fa-hamburger"></i>
</button>
<div id="headerMenu" class="item center">
<h1><span>Grocery List</span></h1>
<div id="dropdown" style="display: none">
<a href="/stock" onclick="toggleMenu()"><span>Stock</span></a>
<a href="/shop" onclick="toggleMenu()"><span>Shop</span></a>
<a href="/households" onclick="toggleMenu()"><span>Households</span></a>
<a href="/about" onclick="toggleMenu()"><span>About</span></a>
<a href="#style" onclick="switchStyle()"><span><i class="fas fa-adjust"></i></span></a>
</div>
</div>
<button id="scrollButton" class="button top right" onclick="window.scroll(0,0)">
<i class="fas fa-arrow-up"></i>
</button>
</div>
<hr />
<!-- set to display:none until rave mode enabled -->
<iframe width="99%" style="min-height: 150px; max-height: 35vh;" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url=https%3A//api.soundcloud.com/tracks/820219951&color=%23ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&show_teaser=true&visual=true"></iframe>
<div id="app" class="container">
</div>
<!-- set to display:none until rave mode enabled -->
<div class="addItem" id="disco">
<button id="discoButton" type="button" data-toggle="modal" data-target="#addFoodItemModal" onclick="toggleModal()">
<img src="discoball.gif"><i class="fas fa-plus"></i>
</button>
</div>
</div>
<script src="index.js" type="application/javascript"></script>
</body>
</html>