53 lines
1.2 KiB
HTML
53 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<script src="./font_maker.js" type="module" defer></script>
|
|
|
|
<style>
|
|
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
td {
|
|
border-top: 1px solid gray;
|
|
min-width: 70px;
|
|
text-align: center;
|
|
padding: 4px;
|
|
}
|
|
#selected {
|
|
display: flex;
|
|
flex-direction: row;
|
|
border-top: 1px solid gray;
|
|
padding: 10px;
|
|
}
|
|
#selected > * {
|
|
min-width: 70px;
|
|
text-align: center;
|
|
}
|
|
code {
|
|
font-size: 18px;
|
|
background-color: #444;
|
|
padding: 2px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
border-radius: 2px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas"></canvas>
|
|
<div id="selected"></div>
|
|
<table id="charlist"></table>
|
|
<button id="export">Export</button>
|
|
<pre><code id="export-area"></code></pre>
|
|
</body>
|
|
</html>
|