First commit

This commit is contained in:
2023-12-22 14:52:30 -05:00
commit ebccf275a7
7 changed files with 1768 additions and 0 deletions

17
index.html Normal file
View File

@@ -0,0 +1,17 @@
<html>
<head>
<script async src="./dist/libs.js"></script>
<script async src="./index.js"></script>
<style id="stylesheet">
body { display: flex; flex-direction: column; margin: 0; height: 100vh; max-height: 100vh; }
nav { background: #f5f5f5; color: #6c6c6c; margin: 2px 5px }
nav input { all: unset; text-decoration: underline; font-family: sans-serif; }
.cm-editor { flex-grow: 1; outline: 1px solid #ddd; overflow-y: auto; }
</style>
</head>
</html>