2022-09-09 16:23:24 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="description" content="Dunemask" />
|
2022-12-24 20:49:01 -05:00
|
|
|
<link rel="stylesheet" type="text/css" href="/css/fonts.css" />
|
|
|
|
<title>Dunemask</title>
|
2022-09-09 16:23:24 -04:00
|
|
|
<link
|
|
|
|
rel="apple-touch-icon"
|
|
|
|
sizes="180x180"
|
|
|
|
href="/favicons/apple-touch-icon.png?v=0.0.1-sep-9-2022"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="32x32"
|
|
|
|
href="/favicons/favicon-32x32.png?v=0.0.1-sep-9-2022"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="icon"
|
|
|
|
type="image/png"
|
|
|
|
sizes="16x16"
|
|
|
|
href="/favicons/favicon-16x16.png?v=0.0.1-sep-9-2022"
|
|
|
|
/>
|
|
|
|
<link rel="manifest" href="/favicons/site.webmanifest?v=0.0.1-sep-9-2022" />
|
|
|
|
<link
|
|
|
|
rel="mask-icon"
|
|
|
|
href="/favicons/safari-pinned-tab.svg?v=0.0.1-sep-9-2022"
|
|
|
|
color="#ffc40d"
|
|
|
|
/>
|
|
|
|
<link rel="shortcut icon" href="/favicons/favicon.ico?v=0.0.1-sep-9-2022" />
|
|
|
|
<meta name="msapplication-TileColor" content="#ffc40d" />
|
|
|
|
<meta
|
|
|
|
name="msapplication-config"
|
|
|
|
content="/favicons/browserconfig.xml?v=0.0.1-sep-9-2022"
|
|
|
|
/>
|
|
|
|
<meta name="theme-color" content="#5d5d5d" />
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<noscript>You need to enable JavaScript to view this site.</noscript>
|
2022-12-24 20:49:01 -05:00
|
|
|
<div id="loading">
|
|
|
|
<header>
|
|
|
|
<h3>Dunemask</h3>
|
|
|
|
</header>
|
|
|
|
<div class="loading-content">
|
|
|
|
<div class="loading-content-wrapper">
|
|
|
|
<img src="/images/phx-mini.gif" class="loading-content-media" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<h1 class="loading-content-subtitle">Loading</h1>
|
|
|
|
</div>
|
2022-09-09 16:23:24 -04:00
|
|
|
<div id="root"></div>
|
2022-12-24 20:49:01 -05:00
|
|
|
<style>
|
|
|
|
body {
|
|
|
|
background: linear-gradient(to bottom, #eee, #fff);
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
#loading > header {
|
|
|
|
background-color: black;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 64px;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading .loading-content {
|
|
|
|
display: flex;
|
|
|
|
z-index: -1;
|
|
|
|
overflow: hidden;
|
|
|
|
justify-content: center;
|
|
|
|
margin-top: 5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading .loading-content-wrapper {
|
|
|
|
height: 100%;
|
|
|
|
text-align: center;
|
|
|
|
max-width: 1024px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading .loading-content-media {
|
|
|
|
width: 50%;
|
|
|
|
height: 50%;
|
|
|
|
max-height: 100vh;
|
|
|
|
max-width: 1024px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#loading .loading-content-subtitle {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
</style>
|
2022-09-09 16:23:24 -04:00
|
|
|
<script type="module" src="/src/App.jsx"></script>
|
|
|
|
</body>
|
2022-12-24 20:49:01 -05:00
|
|
|
<footer>
|
|
|
|
<div id="footer"></div>
|
|
|
|
</footer>
|
2022-09-09 16:23:24 -04:00
|
|
|
</html>
|