-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (65 loc) · 2.18 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
64
65
66
67
<!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">
<title>hi =)</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="mlem.ico">
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/gh/fcmam5/nightly.js@v1.0/dist/nightly.min.js"></script>
</head>
<body>
<div id="info">
Space/Esc/Enter: Start, Restart<br>
WASD: Move<br>
H: Disable/Enable Code Help<br>
M: Change Shown Letter Amount<br>
</div>
<div style="position: absolute; bottom: 0; left: 0;"><a style="font-size: 10;" href="https://docs.google.com/document/d/107CRv8zKiJU1MIk-I4KXcwX_fmeVM6vQgES9FthAK0Q/edit?usp=sharing">Amok Bible</a></div>
<div id="timer">Time: 0.0s</div>
<div id="solution">[Letters will appear here]</div>
<div id="numbers">
<div id="first" class="number">
<h4 class="top"></h4>
<h4 class="mid"></h4>
<h4 class="bot"></h4>
</div>
<div id="second" class="number">
<h4 class="top"></h4>
<h4 class="mid"></h4>
<h4 class="bot"></h4>
</div>
<div id="third" class="number">
<h4 class="top"></h4>
<h4 class="mid"></h4>
<h4 class="bot"></h4>
</div>
<div id="fourth" class="number">
<h4 class="top"></h4>
<h4 class="mid"></h4>
<h4 class="bot"></h4>
</div>
</div>
<div id="combos">
ON - 5861<br>
NF - 8165<br>
NO - 8561<br>
FO - 1568<br>
FN - 1856
</div>
<h1>
<button type="button" name="button" id="btn">Toggle dark mode</button>
</h1>
<script src="../src/nightly.js" charset="utf-8"></script>
<script type="text/javascript">
// Persistence disabled
var Nightly = new Nightly();
document.getElementById("btn").addEventListener("click", function(){
Nightly.toggle();
});
Nightly.toggle();
</script>
</body>
</html>