-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (96 loc) 路 4.21 KB
/
Copy pathindex.html
File metadata and controls
107 lines (96 loc) 路 4.21 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Micro Data Recognition (MDR)</title>
<meta name="description" content="A pattern recognition game based on the Apple TV series - Severance." />
<link rel="stylesheet" href="/source/style/index.css" />
<link rel="shortcut icon" href="/img/lumon.svg" type="image/xml+svg" />
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="cursor"></div>
<div id="overlay" class="fixed inset-0 z-10 bg-white dark:bg-slate-900 flex flex-grow flex-col gap-16 justify-center items-center">
<div class="flex items-center text-2xl">
<span>LUM</span>
<svg class="w-8 h-8">
<use href="#icon" />
</svg>
<span>N</span>
</div>
<div class="flex flex-col space-y-10 text-center">
<button id="playbtn" class="animate-pulse bg-slate-500 bg-opacity-30 hover:animate-none px-10 py-2 border border-current cursor-none font-bold">
► NEXT LEVEL
</button>
<a href="./tutorial/" class="opacity-80 hover:opacity-100 border-b border-transparent hover:border-current p-2 cursor-none font-medium transition">LEARN HOW TO PLAY</a>
<p class="italic opacity-70 text-slate-500">✜ use a desktop for a better experience ✜</p>
<a href="https://github.com/henryhale/mdr/" class="opacity-80 hover:opacity-100 border-b border-transparent hover:border-current flex space-x-4 items-center justify-center p-2">
<img src="/img/github.svg" class="size-8" />
<span>VIEW ON GITHUB</span>
</a>
</div>
</div>
<div id="app" class="flex flex-col space-y-1 w-full max-w-4xl h-full mx-auto">
<header class="flex justify-between items-center p-4 text-base sm:text-2xl border-b border-current">
<div class="flex flex-grow items-center">
<div id="level" class="flex-grow">LOADING...</div>
<div class="pr-10 transition">
<span id="progress">00%</span>
Complete
</div>
</div>
<div class="flex items-center">
<span>LUM</span>
<svg class="w-8 h-8 stroke-red-500">
<use href="#icon" />
</svg>
<span>N</span>
</div>
</header>
<main class="flex flex-grow overflow-hidden justify-center items-center border-y border-current">
<div class="w-full p-8 overflow-y-hidden overflow-x-auto">
<table class="table-auto w-full border-collapse"></table>
</div>
</main>
<footer class="flex px-4 py-2 justify-between gap-4 border-t border-current">
<div class="bin">
<div>01</div>
<div>
<div id="bin1"></div>
</div>
</div>
<div class="bin">
<div>02</div>
<div>
<div id="bin2"></div>
</div>
</div>
<div class="bin">
<div>03</div>
<div>
<div id="bin3"></div>
</div>
</div>
<div class="bin">
<div>04</div>
<div>
<div id="bin4"></div>
</div>
</div>
</footer>
</div>
<svg style="display: none">
<symbol id="icon" viewBox="0 0 24 24" fill="none">
<rect width="24" height="24" rx="0" stroke="none" />
<g stroke-linecap="round" stroke-linejoin="round" />
<path
d="M8 4H5a1 1 0 0 0-1 1v3m12-4h3a1 1 0 0 1 1 1v3M4 16v3a1 1 0 0 0 1 1h3m12-4v3a1 1 0 0 1-1 1h-3M6 12s1.714-4 6-4 6 4 6 4-1.714 4-6 4-6-4-6-4m8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0"
stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" />
</symbol>
</svg>
<!-- retro style overlay -->
<div id="retro-screen"></div>
<script type="module" src="main.js"></script>
</body>
</html>