40 lines
654 B
HTML
40 lines
654 B
HTML
<!doctype html>
|
|
<meta charset="utf-8" />
|
|
<style>
|
|
:root,
|
|
input,
|
|
textarea {
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
main {
|
|
display: flex;
|
|
margin: 0 auto;
|
|
width: fit-content;
|
|
padding: 1em;
|
|
}
|
|
|
|
textarea {
|
|
resize: none;
|
|
overflow-y: scroll;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
a {
|
|
color: rgb(255, 31, 248);
|
|
text-decoration: none;
|
|
&:hover {
|
|
border-bottom: 1px solid rgb(255, 31, 248);
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<main>
|
|
<textarea cols="80" rows="20"></textarea>
|
|
</main>
|
|
|
|
<footer>
|
|
<a href="https://git.lavender.software/char/sync-playground">source code</a>
|
|
</footer>
|
|
|
|
<script type="module" src="/dist/main.js"></script>
|