-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (72 loc) · 2.78 KB
/
index.html
File metadata and controls
76 lines (72 loc) · 2.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Enter the Lambda</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<link rel="stylesheet" href="./res/css/game-styles.css"/>
</head>
<body>
<div id="matrix-background"></div>
<div id="mobile-warning-overlay" class="mobile-warning-overlay">
<div class="mobile-warning-popup">
<div class="mobile-warning-header">
<span class="mobile-warning-icon">λ</span>
<h2>DESKTOP ONLY</h2>
</div>
<div class="mobile-warning-content">
<p>This game is currently only available on desktop devices.</p>
<p>Please visit this website on a desktop computer for the full experience.</p>
<div class="mobile-warning-actions">
<a href="https://github.com/jeujeus/enter-the-lambda"
target="_blank"
class="mobile-warning-button mobile-warning-button-primary">
View Source & Documentation
</a>
</div>
</div>
</div>
</div>
<div class="crt-monitor">
<div class="tape-label">
FUCK UP
<span class="tape-popover">Hagbard Celines "First Universal Cybernetic-<br>Kinetic-Ultramicro-Programmer"</span>
</div>
<div class="crt-screen">
<div id="game-container" class="scan-lines">
<pre id="terminal"></pre>
</div>
</div>
<a href="https://github.com/jeujeus/enter-the-lambda" target="_blank" class="brand-logo">JEUJEUS</a>
<div class="monitor-controls">
<button id="mute-button" class="monitor-button" title="Toggle Sound">
<span class="sound-icon">♪</span>
<div class="mute-led"></div>
</button>
<button id="power-button" class="monitor-button" title="Reset Game">
<span class="power-icon">⏻</span>
<div class="power-led"></div>
</button>
</div>
<div class="sticker-qc">
<span class="qc-title">QC PASSED</span>
<span class="qc-id">CHECKED</span>
</div>
<div class="sticker-asset">
<span class="asset-prop">PROPERTY OF</span>
<span class="asset-owner">LAMBDA LABS</span>
<div class="asset-barcode"></div>
<span class="asset-id">ID: 237-L</span>
</div>
<div class="sticker-y2k">
<span class="y2k-icon">⚠</span>
<span class="y2k-text">Y2K COMPLIANT</span>
<span class="y2k-sub">DO NOT TURN OFF</span>
</div>
</div>
<script type="module" src="res/js/game.js"></script>
<script type="module" src="res/js/surroundingStyle/monitorControls.js"></script>
<script type="module" src="res/js/surroundingStyle/mobileDetection.js"></script>
</body>
</html>