-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (57 loc) · 2 KB
/
Copy pathindex.html
File metadata and controls
60 lines (57 loc) · 2 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!-- Mobile-optimized viewport -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
<!-- Prevent iOS text size adjustment -->
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="mobile-web-app-capable" content="yes" />
<!-- Theme color for mobile browsers -->
<meta name="theme-color" content="#1e1b4b" />
<meta name="msapplication-navbutton-color" content="#1e1b4b" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<!-- Prevent phone number detection -->
<meta name="format-detection" content="telephone=no" />
<!-- SEO and display -->
<meta name="description" content="One More Line - A thrilling vertical climbing game. Swing your way to the top!" />
<title>One More Line</title>
<style>
/* Prevent pull-to-refresh and overscroll */
html, body {
overscroll-behavior: none;
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
touch-action: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
}
/* Ensure full height on mobile */
#root {
width: 100%;
height: 100%;
min-height: 100vh;
min-height: -webkit-fill-available;
}
/* Smooth rendering */
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Prevent text selection during gameplay */
* {
-webkit-touch-callout: none;
}
</style>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>