first MVP

This commit is contained in:
msramalho
2023-02-21 13:58:10 +00:00
parent 6f76e64973
commit 93d47d2ee3
25 changed files with 984 additions and 215 deletions

36
source/html/options.html Normal file
View File

@@ -0,0 +1,36 @@
<!doctype html>
<meta charset="utf-8">
<title>Options</title>
<form id="options-form" class="detail-view-container">
<h3>Color Picker</h3>
<div class="color-picker">
<div class="color-inputs">
<label class="color-input">
<span>R</span>
<input type="range" min="0" max="255" name="colorRed">
<input type="number" name="colorRed" min="0" max="255">
</label>
<label class="color-input">
<span>G</span>
<input type="range" min="0" max="255" name="colorGreen">
<input type="number" name="colorGreen" min="0" max="255">
</label>
<label class="color-input">
<span>B</span>
<input type="range" min="0" max="255" name="colorBlue">
<input type="number" name="colorBlue" min="0" max="255">
</label>
</div>
<div class="color-output"></div>
</div>
<h3>Notice Content</h3>
<div class="text-inputs">
<label class="text-input">
<span>Text</span>
<input type="text" name="text">
</label>
</div>
</form>
<script src="../js/options.js" type="module"></script>