31 lines
759 B
HTML
31 lines
759 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Solar Neighbourhood</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
display: flex;
|
|
place-items: center;
|
|
min-height: 100vh;
|
|
font: 16/1.5 sans-serif normal;
|
|
color-scheme: light dark;
|
|
color: #EEE;
|
|
background-color: #222;
|
|
}
|
|
#info {
|
|
position: absolute;
|
|
top: 1em;
|
|
right: 2em;
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="info">...</div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|