2020-04-16 11:42:55 -04:00
|
|
|
<!doctype html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<link rel="stylesheet" href="./style.css?t=1"></style>
|
2020-04-16 11:56:39 -04:00
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
height: 100vh;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2020-04-16 14:05:10 -04:00
|
|
|
background: var(--dialog-blue);
|
2020-04-16 11:56:39 -04:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2020-04-16 11:42:55 -04:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2020-04-16 14:05:10 -04:00
|
|
|
<div class="dialog">
|
|
|
|
|
<div class="header">
|
|
|
|
|
<div class="title">
|
2020-04-16 14:27:31 -04:00
|
|
|
Windows 98 Example
|
2020-04-16 14:05:10 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<button aria-label="Minimize"></button><button aria-label="Maximize"></button><button aria-label="Close"></button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="body">
|
2020-04-16 14:27:31 -04:00
|
|
|
<section>This is an example window with some controls.</section>
|
2020-04-16 14:05:10 -04:00
|
|
|
|
2020-04-16 14:27:31 -04:00
|
|
|
<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>
|
2020-04-16 14:05:10 -04:00
|
|
|
</div>
|
|
|
|
|
</div>
|
2020-04-16 11:42:55 -04:00
|
|
|
</body>
|
|
|
|
|
</html>
|