-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (52 loc) · 2.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Aeropress Recipe Generator</title>
<script src="main.js" defer></script>
</head>
<body class="body body-light">
<div class="content">
<header class="header header-light">
Aeropress Recipe Generator
<span class="infoIcon">ⓘ</span>
<div class="tooltip">
<span class="clipboardIcon tooltipText">⎘</span>
</div>
</header>
<div class="recipeDiv recipeDiv-light">
<ol class="recipe recipe-light">
<li class="step step-light">Click me to generate a recipe!</li>
</ol>
</div>
<dialog class="infoDialog">
<span class="closeButton">x</span>
<div id="copyingInstructionsDiv">
<h3>How to Copy a Recipe</h3>
Tap the <span class="clipboardIcon">⎘</span> Icon, and the displayed recipe will be copied to the clipboard.
</div>
<div class="creditsDiv">
<h3>Credits</h3>
<ol>
<li><a href="https://www.jameshoffmann.co.uk/" target="_blank" class="creditLinks">James Hoffmann</a></li>
<li><a href="https://www.happyhues.co" target="_blank" class="creditLinks">HappyHues</a></li>
<li><a href="https://aeropress.com/" target="_blank" class="creditLinks">Aeropress</a></li>
<li><a href="https://worldaeropresschampionship.com/" target="_blank" class="creditLinks">World Aeropress Championships</a></li>
<li><a href="https://fonts.google.com/specimen/Oxygen" target="_blank" class="creditLinks">Oxygen Font by Vernon Adams</a></li>
</ol>
</div>
</dialog>
<div class="toast toast-light">Copied!</div>
<footer class="footer footer-light">
Website made by <a class="a a-light" href="https://www.adambazzi.co">Adam Bazzi</a> • Theme Toggle :
<label class="switch">
<input type="checkbox" id="toggleTheme">
<span class="slider round"></span>
</label>
</footer>
</div>
</body>
</html>