2022-08-09 11:11:54 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
2022-08-24 14:47:32 +08:00
|
|
|
<meta
|
|
|
|
name="viewport"
|
|
|
|
content="width=device-width, user-scalable=no, initial-scale=1.0"
|
|
|
|
/>
|
2022-08-18 21:23:03 +08:00
|
|
|
<title>Star Web Components</title>
|
2022-08-16 14:00:05 +08:00
|
|
|
<script type="module" src="/src/index.ts"></script>
|
2022-08-09 11:11:54 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
2022-08-16 14:00:05 +08:00
|
|
|
<!-- main -->
|
|
|
|
<settings-app></settings-app>
|
|
|
|
<style>
|
|
|
|
* {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
scrollbar-width: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
background: #f0f0f0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
2022-08-16 15:44:33 +08:00
|
|
|
font-family: 'gaia-icons';
|
|
|
|
src: url('fonts/gaia-icons.ttf') format('truetype');
|
2022-08-16 14:00:05 +08:00
|
|
|
font-weight: 500;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
</style>
|
2022-08-09 11:11:54 +08:00
|
|
|
</body>
|
|
|
|
</html>
|