abtmtr-v4/views/projects/item/woz/index.html
2023-12-21 00:23:50 -06:00

77 lines
2.1 KiB
HTML
Executable file

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>WozSteamGem</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="/styles/normal.css" />
<link rel="stylesheet" href="/styles/windows.css" />
<link rel="stylesheet" href="/styles/style.css" />
<style>
:root {
--base-color: 232, 95%;
}
</style>
</head>
<body>
<$ loader.html $>
<header>
<section>
<h1>WozSteamGem</h1>
<p>Make a Scott The Woz thumbnail out of any Steam game.</p>
</section>
<section id="accessibility" hidden></section>
</header>
<hr />
<section>
<input
type="number"
id="steam_game"
style="width: 8ch"
min="10"
value="620"
/>
<label for="steam_game">Steam Game ID</label><br />
<button id="generateButton">Generate!</button>
</section>
<section>
<label for="scott_index">Extras</label><br />
<input
type="number"
id="scott_index"
style="width: 8ch"
min="0"
max="9"
value="0"
/>
<label for="scott_index">Scott Index</label>
<small>
<label for="stash" class="checkbox">
<input
type="checkbox"
id="stash"
onchange="scott_index.disabled = event.target.checked"
/>
<span class="checkbox"></span>
Scott's Stash
</label></small
><br />
<select id="align">
<option value="left">Left</option>
<option value="center" selected>Center</option>
<option value="right">Right</option>
</select>
<label for="align">Background Alignment</label>
</section>
<div id="WindowHolder"></div>
<script src="./scripts/index.js"></script>
<script src="/scripts/windows.js"></script>
<script src="/scripts/accessibility.js"></script>
<script src="/scripts/interface.js"></script>
<script>
window.manager = new WindowManager(
document.getElementById("WindowHolder")
);
</script>
</body>
</html>