Spaces:
Running
Running
Update Falcon Space with verified Phase 3 build
Browse files- assets/index-D3XrN6wa.js +0 -0
- assets/index-uCer0bXz.js +0 -0
- index.html +27 -6
- style.css +0 -28
assets/index-D3XrN6wa.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
assets/index-uCer0bXz.js
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
index.html
CHANGED
|
@@ -1,15 +1,36 @@
|
|
| 1 |
-
<!
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8" />
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 6 |
-
<title>Millennium Falcon —
|
| 7 |
<style>
|
| 8 |
-
html, body { margin: 0; height: 100%; overflow: hidden;
|
| 9 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10 |
</style>
|
| 11 |
-
<script type="module" crossorigin src="
|
| 12 |
</head>
|
| 13 |
<body>
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
</body>
|
| 15 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
<html lang="en">
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8" />
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
| 6 |
+
<title>Millennium Falcon — FPV Walkthrough</title>
|
| 7 |
<style>
|
| 8 |
+
html, body { margin: 0; height: 100%; background: #05070c; overflow: hidden; touch-action: none; }
|
| 9 |
+
#app { position: fixed; inset: 0; }
|
| 10 |
+
#hud {
|
| 11 |
+
position: fixed; left: 12px; top: 10px; z-index: 10;
|
| 12 |
+
font: 12px/1.5 ui-monospace, Menlo, Consolas, monospace;
|
| 13 |
+
color: #cfe0ff; text-shadow: 0 1px 3px #000; pointer-events: none;
|
| 14 |
+
white-space: pre;
|
| 15 |
+
}
|
| 16 |
+
#crosshair {
|
| 17 |
+
position: fixed; left: 50%; top: 50%; width: 8px; height: 8px;
|
| 18 |
+
margin: -4px 0 0 -4px; z-index: 9; border: 1px solid rgba(207,224,255,0.6);
|
| 19 |
+
border-radius: 50%; pointer-events: none;
|
| 20 |
+
}
|
| 21 |
+
#buttons { position: fixed; left: 12px; bottom: 12px; z-index: 10; display: flex; gap: 6px; flex-wrap: wrap; }
|
| 22 |
+
#buttons button {
|
| 23 |
+
font: 11px ui-monospace, monospace; color: #cfe0ff; background: #16233f;
|
| 24 |
+
border: 1px solid #2c3f66; border-radius: 4px; padding: 6px 10px; cursor: pointer;
|
| 25 |
+
}
|
| 26 |
+
#buttons button:hover { background: #22345c; }
|
| 27 |
</style>
|
| 28 |
+
<script type="module" crossorigin src="/assets/index-D3XrN6wa.js"></script>
|
| 29 |
</head>
|
| 30 |
<body>
|
| 31 |
+
<div id="app"></div>
|
| 32 |
+
<div id="crosshair"></div>
|
| 33 |
+
<div id="hud"></div>
|
| 34 |
+
<div id="buttons"></div>
|
| 35 |
</body>
|
| 36 |
</html>
|
style.css
DELETED
|
@@ -1,28 +0,0 @@
|
|
| 1 |
-
body {
|
| 2 |
-
padding: 2rem;
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
-
}
|
| 5 |
-
|
| 6 |
-
h1 {
|
| 7 |
-
font-size: 16px;
|
| 8 |
-
margin-top: 0;
|
| 9 |
-
}
|
| 10 |
-
|
| 11 |
-
p {
|
| 12 |
-
color: rgb(107, 114, 128);
|
| 13 |
-
font-size: 15px;
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
-
}
|
| 17 |
-
|
| 18 |
-
.card {
|
| 19 |
-
max-width: 620px;
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
.card p:last-child {
|
| 27 |
-
margin-bottom: 0;
|
| 28 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|