You've already forked 98.css
mirror of
https://github.com/jdan/98.css.git
synced 2026-05-05 06:01:22 +09:00
36 lines
770 B
HTML
36 lines
770 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="./style.css?t=1"></style>
|
|
<style>
|
|
body {
|
|
height: 100vh;
|
|
margin: 0;
|
|
padding: 0;
|
|
background: var(--dialog-blue);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<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>
|
|
</body>
|
|
</html>
|