k8x12s
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-12-31 14:18:14 +08:00
parent efb137a5a0
commit 56870580f4
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
<script lang="ts">
let content = "私は細胞ですが、肉はエヌですか?";
</script>
<textarea name="content" id="content" bind:value={content}></textarea>
<div id="main" class="main">
{@html content}
</div>
<style>
@font-face { font-family: k8x12S; src: url(../../lib/assets/k8x12S.ttf); }
#main {
font-family: k8x12S;
font-size: 2em;
display: block;
color: #c9d1d9;
background-color: #0d1117;
width: fit-content;
max-width: 600px;
padding: 10px;
}
:global(html, body) {
background-color: #0d1117;
color: #c9d1d9;
}
</style>