k5web/index.html

31 lines
726 B
HTML
Raw Normal View History

2024-01-24 13:40:15 +00:00
<!DOCTYPE html>
2024-01-25 13:41:55 +00:00
<html lang="zh-cmn">
2024-01-24 13:40:15 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-01-24 15:02:15 +00:00
<title>K5Web</title>
2024-02-05 09:58:37 +00:00
<style>
::-webkit-scrollbar {
width: 12px;
height: 4px;
}
::-webkit-scrollbar-thumb {
border: 4px solid transparent;
background-clip: padding-box;
border-radius: 7px;
background-color: var(--color-text-4);
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--color-text-3);
}
</style>
2024-04-21 03:36:21 +00:00
<script src="serial.js"></script>
2024-01-24 13:40:15 +00:00
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>