98se.css/index.html

36 lines
770 B
HTML
Raw Normal View History

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">
Display Properties
</div>
<div class="controls">
<button aria-label="Minimize"></button><button aria-label="Maximize"></button><button aria-label="Close"></button>
</div>
</div>
<div class="body">
<p>Hello, world!</p>
<p><button style="width: 75px; height: 23px"><u>C</u>lose</button></p>
</div>
</div>
2020-04-16 11:42:55 -04:00
</body>
</html>