-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall.html
More file actions
53 lines (52 loc) · 2.3 KB
/
all.html
File metadata and controls
53 lines (52 loc) · 2.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>make10 | all puzzles</title>
<meta name="description" content="a math puzzle game">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="main.css">
<script src="decimal.js"></script>
<script src="gemini-mexp-decimal.js"></script>
<script src="SPECIAL.js" defer></script>
<script src="app.js" defer></script>
<script src="all.js" defer></script>
</head>
<body>
<div class="all">
<div id="ephemeralcontainer"></div>
<h1 id="title">all puzzles</h1>
<a href="index.html">back to home</a>
<div id="options">
<label for="hidecompleted">
<input type="checkbox" id="hidecompleted">unsolved</label>
<label for="hideunsolved">
<input type="checkbox" id="hideunsolved">completed</label>
<label for="recommended">
<input type="checkbox" id="recommended">recommended</label>
<label for="has-challenge">
<input type="checkbox" id="has-challenge">has challenge</label>
<label for="random">
<input type="checkbox" id="random">random order</label>
<label for="openinsandbox">
<input type="checkbox" id="openinsandbox">open in sandbox</label>
<br />
<input placeholder="search (# matches any character)"
maxlength="4" id="search" autocomplete="off">
</div>
<p id="completedcount"></p>
<div id="scroll-container">
<div id="content"></div>
</div>
<div id="dynamic-tooltip" class="fixed-tooltip"></div>
<div id="canvascontainer">
<p id="canvaslabel">hover below!</p>
</div>
</body>
</html>