-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreverse-mixer.html
More file actions
62 lines (53 loc) · 1.92 KB
/
reverse-mixer.html
File metadata and controls
62 lines (53 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SOMIX</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/reverse-mixer.css">
<link rel="shortcut icon" type="image/x-icon" href="./assets/logo/favicon.ico?">
</head>
<body>
<div class="banner">
</br></br>
<button class="bannerButton" onclick="pageMain()">
<img src="./assets/logo/logo.png" height=50 width=83>
</button>
</div>
<div class="modal", id="blackscreen"></div>
<div class="modal", id="loading">
<div class="recipe"></div>
<div class="loader-wrapper">
<div class="recipe-images"></div>
<pre class="error-text"></pre>
<div class="loader"></div>
<div class="backButton-wrapper">
<input type="button" value="Back" class="backButton" onclick="goBack()">
</div>
</div>
</div>
<div>
<h2 class="text">Products</h2>
<div class="products"></div>
</div>
</br></br>
<div>
<h2 class="text">Effects</h2>
</br>
<div class="effects"></div>
</div>
</br></br></br></br></br></br>
<footer>
<div class="buttons">
<label class="mixText">
Find Recipe
<input type="image" src="./assets/icons/search.png" class="mixButton" onclick="displayRecipe()">
</label>
</div>
</footer>
</body>
<script src="./scripts/global/variables.js"></script>
<script src="./scripts/reverse-mixer/items.js"></script>
<script src="./scripts/reverse-mixer/recipes.js"></script>
<script src="./scripts/reverse-mixer/links.js"></script>
</html>