2023-11-23 08:53:28 +00:00
|
|
|
<!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" />
|
2023-11-23 17:33:47 +00:00
|
|
|
<link rel="stylesheet" href="/styles/windows.css" />
|
2023-11-23 08:53:28 +00:00
|
|
|
<link rel="stylesheet" href="/styles/style.css" />
|
|
|
|
<style>
|
|
|
|
:root {
|
2023-12-21 06:23:50 +00:00
|
|
|
--base-color: 232, 95%;
|
2023-11-23 08:53:28 +00:00
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<$ loader.html $>
|
2023-11-27 00:58:46 +00:00
|
|
|
<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>
|
2023-11-23 08:53:28 +00:00
|
|
|
<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"
|
|
|
|
/>
|
2023-11-25 05:09:23 +00:00
|
|
|
<span class="checkbox">✓</span>
|
2023-11-23 08:53:28 +00:00
|
|
|
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>
|
2023-11-23 17:33:47 +00:00
|
|
|
<div id="WindowHolder"></div>
|
2023-11-23 17:59:45 +00:00
|
|
|
<script src="./scripts/index.js"></script>
|
2023-11-23 17:33:47 +00:00
|
|
|
<script src="/scripts/windows.js"></script>
|
2023-11-23 08:53:28 +00:00
|
|
|
<script src="/scripts/accessibility.js"></script>
|
|
|
|
<script src="/scripts/interface.js"></script>
|
2023-11-25 01:53:10 +00:00
|
|
|
<script>
|
|
|
|
window.manager = new WindowManager(
|
|
|
|
document.getElementById("WindowHolder")
|
|
|
|
);
|
|
|
|
</script>
|
2023-11-23 08:53:28 +00:00
|
|
|
</body>
|
|
|
|
</html>
|