-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (52 loc) · 2.55 KB
/
Copy pathindex.html
File metadata and controls
52 lines (52 loc) · 2.55 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="./favicon.ico" />
<link rel="icon" type="image/png" sizes="64x64" href="./favicon-64x64.png" />
<link rel="apple-touch-icon" sizes="180x180" href="./favicon-180x180.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="description" content="Browser-based 3D Vietnam War combat game with helicopters, fixed-wing aircraft, large-scale AI battles, and real A Shau Valley terrain." />
<meta name="theme-color" content="#d9c7a3" />
<link rel="manifest" href="/manifest.json" />
<title>Terror in the Jungle</title>
</head>
<body>
<div id="boot-splash" style="
position:fixed;inset:0;z-index:99999;
display:flex;flex-direction:column;align-items:center;justify-content:center;
background:#d9c7a3;
background-image:
radial-gradient(120% 90% at 50% -10%, #e7d9ba, transparent 60%),
radial-gradient(140% 120% at 50% 120%, #c4b186, transparent 55%);
color:#2b2620;
font-family:'Special Elite','Courier New',monospace;
">
<div style="
font-family:'Courier Prime','Courier New',monospace;
font-size:12px;letter-spacing:0.32em;text-transform:uppercase;
color:#8a7e6b;margin-bottom:10px;
">Recon Field Book · No. 4</div>
<div style="
font-size:clamp(1.7rem,6vw,3rem);font-weight:400;
letter-spacing:0.04em;text-transform:uppercase;
margin-bottom:1.6rem;color:#2b2620;text-shadow:1px 1px 0 rgba(255,255,255,0.3);
">Terror in the Jungle</div>
<div style="width:220px;height:14px;background:rgba(43,38,32,0.12);border:1.5px solid #2b2620;border-radius:8px;overflow:hidden;">
<div style="
width:30%;height:100%;border-radius:8px;
background:repeating-linear-gradient(45deg,#4f6b3a 0 8px,#3a4f2a 8px 16px);
animation:boot-pulse 1.2s ease-in-out infinite alternate;
"></div>
</div>
<div style="
font-family:'Caveat','Comic Sans MS',cursive;font-size:20px;
color:#3a4f2a;margin-top:14px;transform:rotate(-1.5deg);
">standby for insertion…</div>
<style>@keyframes boot-pulse{0%{width:20%;margin-left:0}100%{width:55%;margin-left:45%}}</style>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>