You've already forked retrowin32
mirror of
https://github.com/encounter/retrowin32.git
synced 2026-03-30 11:35:51 -07:00
40 lines
631 B
HTML
40 lines
631 B
HTML
<!doctype html>
|
|
<title>retrowin32</title>
|
|
<link rel='stylesheet' href='win2k.css'>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
display: flex;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
}
|
|
|
|
header {
|
|
padding: 8px;
|
|
display: flex;
|
|
align-items: baseline;
|
|
}
|
|
|
|
.stdout {
|
|
min-width: 80ex;
|
|
padding: 1ex;
|
|
color: grey;
|
|
background: black;
|
|
}
|
|
</style>
|
|
|
|
<body></body>
|
|
|
|
<script type='module'>
|
|
import { runMain } from './bundle.js';
|
|
runMain();
|
|
</script> |