-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (73 loc) · 2.12 KB
/
Copy pathindex.html
File metadata and controls
81 lines (73 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wolfenstein 3D</title>
<meta http-equiv="refresh" content="0; url=./demo/build/latest/">
<link rel="canonical" href="https://luke-b.github.io/DosTest/">
<link rel="icon" type="image/svg+xml" href="./favicon.svg">
<style>
:root {
color-scheme: dark;
font-family: Arial, sans-serif;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
padding: 24px;
background: radial-gradient(circle at top, #25314f 0%, #111 48%, #050505 100%);
color: #f5f5f5;
}
main {
width: min(100%, 42rem);
padding: 28px;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 14px;
background: rgba(0, 0, 0, 0.72);
box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
text-align: center;
}
h1 {
margin: 0 0 12px;
font-size: clamp(1.8rem, 4vw, 2.6rem);
}
p {
margin: 0 0 16px;
line-height: 1.5;
color: #d0d0d0;
}
a {
color: #8fd3ff;
}
.button {
display: inline-block;
margin-top: 8px;
padding: 12px 18px;
border-radius: 999px;
background: #2b84ff;
color: #fff;
text-decoration: none;
font-weight: 700;
}
.button:hover {
background: #4d98ff;
}
</style>
</head>
<body>
<main>
<h1>Wolfenstein 3D</h1>
<p>Redirecting to the latest browser build.</p>
<p>If you are not redirected automatically, open <a class="button" href="./demo/build/latest/">Play latest build</a>.</p>
</main>
<script>
window.location.replace(new URL('./demo/build/latest/', window.location.href).href);
</script>
</body>
</html>