This commit is contained in:
29
src/routes/k8x12S/+page.svelte
Normal file
29
src/routes/k8x12S/+page.svelte
Normal 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>
|
||||||
Reference in New Issue
Block a user