You've already forked retrowin32
mirror of
https://github.com/encounter/retrowin32.git
synced 2026-03-30 11:35:51 -07:00
67 lines
980 B
HTML
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> |