Files
retrowin32/web/debugger.html
2024-03-08 13:55:29 -08:00

67 lines
980 B
HTML

<!doctype html>
<title>retrowin32</title>
<link rel='stylesheet' href='win2k.css'>
<style>
a.stealth {
color: inherit;
text-decoration: none;
}
code {
white-space: pre-wrap;
}
section.panel {
margin: 1ex;
padding: 1ex;
}
body {
display: flex;
flex-direction: column;
}
.clicky {
cursor: pointer;
}
.highlight {
background: white;
outline: solid 1px red;
}
.error {
color: red;
}
.code {
padding: 1ex;
background: white;
width: 80ex;
}
table {
border-spacing: 0;
}
td {
vertical-align: top;
padding: 0;
}
.tabs-strip {
padding-bottom: 1ex;
}
button.x {
padding: 1px 3px;
font-size: 80%;
}
</style>
<body>
</body>
<script type='module'>
import { debuggerMain } from './bundle.js';
debuggerMain();
</script>