getting ready to do some more UI

This commit is contained in:
Jordan Scales 2020-04-16 14:27:31 -04:00
parent 236ee9731d
commit 102aed33ff
2 changed files with 41 additions and 21 deletions

View file

@ -18,7 +18,7 @@
<div class="dialog">
<div class="header">
<div class="title">
Display Properties
Windows 98 Example
</div>
<div class="controls">
@ -26,9 +26,28 @@
</div>
</div>
<div class="body">
<p>Hello, world!</p>
<section>This is an example window with some controls.</section>
<p><button style="width: 75px; height: 23px"><u>C</u>lose</button></p>
<fieldset>
<legend>I think it's</legend>
<input type="radio" name="answer" value="cool">
<label for="male">Cool</label>
<input type="radio" name="answer" value="meh">
<label for="female">Meh</label>
<label for="reason">Reason:</label>
<select>
<option>Nostalgia</option>
<option>It looks sharp</option>
<option>It's confusing</option>
<option>It looks dated</option>
</select>
</fieldset>
<section class="align-right">
<button>OK</button>
<button>Cancel</button>
</section>
</div>
</div>
</body>