-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
50 lines (50 loc) · 1.46 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
<!doctype html>
<html>
<head>
<link type="text/css" rel="stylesheet" href="styles/styles.css">
<link type="text/css" rel="stylesheet" href="styles/circle.css">
<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="//www.parsecdn.com/js/parse-1.6.14.min.js"></script>
<script src="js/main.js"></script>
<script src="js/backend.js"></script>
<title>ReFresh</title>
<meta name="viewport" content="width=device-width, initial-scale=.8">
</head>
<body style="overflow:auto;">
<div id="navbar">
<a href="index.html">
<h1>ReFresh</h1>
</a>
</div>
<div id="template" class="item" onclick="triggerTouch(this)" style="display:none">
<div class="icon" style="background-image:url('images/template.png');"></div>
<h1 class="itemname">template</h1>
<h1 class="itemdescription">template</h1>
<div class="orderbutton" style="display:none" onclick="reorder(this)">
Reorder
</div>
<div class="c100 p30 small red">
<div class="slice">
<div class="bar"></div>
<div class="fill"></div>
</div>
</div>
</div>
<div id="recipediv">
<div id="top">
</div>
<div id="closerecipes" onclick="hideRecipes()">X</div>
</div>
<div id="footer">
<a href="add.html">
<div id="addbutton">
<h1>Add item(s)</h1>
</div>
</a>
<div id="deletebutton" onclick="deleteToggled()">
<h1>Delete item</h1>
</div>
</div>
</body>
</html>