WHAT THE FUCK IM GOING TO EXPLODE

This commit is contained in:
MeowcaTheoRange 2023-11-17 14:46:53 -06:00
parent 57505591b0
commit e7c5f10af1

View file

@ -5,8 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>HexFlagGen</title> <title>HexFlagGen</title>
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="https://cdn.abtmtr.link/cdn/css/normal.css" /> <link rel="stylesheet" href="styles/normal.css" />
<link rel="stylesheet" href="https://cdn.abtmtr.link/cdn/css/normal.css" />
<style> <style>
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap"); @import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap");
@ -22,14 +21,14 @@
} }
* { * {
transition: background-color 0.125s, color 0.125s, opacity 0.125s; transition: background-color 0.125s, color 0.125s;
} }
</style> </style>
</head> </head>
<body> <body>
<section> <section>
<h1>HexFlagGen</h1> <h1>HexFlagGen</h1>
<label <label for="size_width"
><input ><input
type="number" type="number"
style="width: 8ch" style="width: 8ch"
@ -49,29 +48,30 @@
Base style Base style
</label> </label>
<p>by <a href="https://abtmtr.link/">MeowcaTheoRange</a></p> <p>by <a href="https://abtmtr.link/">MeowcaTheoRange</a></p>
<p>Make a Scott The Woz thumbnail out of any Steam game.</p> <p>
Welcome, here you can make a flag out of the hexadecimal bytes of your
choice!
</p>
</section> </section>
<hr /> <hr />
<section> <section>
<label for="data">Generator string</label><br />
<input <input
type="number" type="text"
id="steam_game" id="data"
style="width: 8ch" value="5BCEFAF5A9B8FFFFFFF5A9B85BCEFABA53"
min="10" style="width: 100%"
value="620" /><br />
/>
<label for="steam_game">Steam Game ID</label><br />
<button id="generateButton">Generate!</button> <button id="generateButton">Generate!</button>
</section> </section>
<section> <section>
<label for="scott_index">Extras</label><br />
<input <input
type="number" type="number"
id="scott_index" id="size_width"
style="width: 8ch" style="width: 8ch"
min="0" min="0"
max="9" max="3000"
value="0" value="300"
/> />
<label for="size_width">Width (px)</label><br /> <label for="size_width">Width (px)</label><br />
<input <input
@ -84,14 +84,17 @@
/> />
<label for="size_height">Height (px)</label><br /> <label for="size_height">Height (px)</label><br />
<select id="flag_type"> <select id="flag_type">
<option value="vert" selected>Vertical</option>
<option value="horiz">Horizontal</option> <option value="horiz">Horizontal</option>
<option value="vert" selected>Vertical</option>
</select> </select>
<label for="align">Background Alignment</label> <label for="flag_type">Flag type</label>
</section> </section>
<hr /> <hr />
<section> <section>
<canvas id="canvas" width="1280" height="720"></canvas> <p>
Hex: <code><span id="hexdisplay">...</span></code>
</p>
<canvas id="canvas" width="300" height="200"></canvas>
</section> </section>
<script src="scripts/index.js"></script> <script src="scripts/index.js"></script>
</body> </body>