35 lines
1.1 KiB
HTML
35 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<base href="../" />
|
|
<title>Orbit — Save panel (dev shot)</title>
|
|
<style>
|
|
/* The game typefaces (must match index.html — the fallback metrics
|
|
differ from Ethnocentric/Centauri's, so layout tests need the
|
|
real fonts). */
|
|
@font-face {
|
|
font-family: 'Ethnocentric';
|
|
src: url('assets/fonts/Ethnocentric-Regular.otf') format('opentype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'Centauri';
|
|
src: url('assets/fonts/FontsFree-Net-Centauri.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
html, body { margin: 0; height: 100%; background: #04060d; overflow: hidden; }
|
|
#game { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
|
|
</style>
|
|
<script src="lib/phaser.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="game"></div>
|
|
<script type="module" src="dev/save-shot.mjs"></script>
|
|
</body>
|
|
</html>
|