64 lines
1.3 KiB
HTML
64 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<!-- HTML page for a "generic dialog" -->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
html, body {
|
|
background-color: #FBFCFB;
|
|
font-family: monospace, sans-serif;
|
|
font-size: '0.7em';
|
|
height: 78%;
|
|
}
|
|
|
|
pre {
|
|
background-color: #EBECEB;
|
|
overflow: scroll;
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5px;
|
|
padding: 3px;
|
|
}
|
|
|
|
#miscinfo-wrapper1 {
|
|
flex: 1 1 auto;
|
|
height: 100%;
|
|
}
|
|
|
|
#miscinfo-wrapper3 {
|
|
display: flex;
|
|
flex-flow: column;
|
|
height: 100%;
|
|
}
|
|
|
|
#title-h1 {
|
|
text-align: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h3 id="title-h1"></h3>
|
|
|
|
<div>
|
|
<button id="good">Yes</button>
|
|
<span width="1em">
|
|
<button id="bad">No</button>
|
|
</div>
|
|
|
|
<!-- dumbass css hack: https://www.w3docs.com/snippets/html/how-to-make-a-div-fill-the-height-of-the-remaining-space.html -->
|
|
<div id='miscinfo-wrapper3'>
|
|
<div id='miscinfo-wrapper1'>
|
|
<pre id="miscinfo">
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script type="module" src="./gb.js"></script>
|
|
|
|
<body>
|
|
</html>
|