45 lines
972 B
HTML
45 lines
972 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vite + Lit + TS</title>
|
|
<script type="module" src="/src/index.ts"></script>
|
|
</head>
|
|
<body>
|
|
<!-- main -->
|
|
<settings-app></settings-app>
|
|
<style>
|
|
* {
|
|
user-select: none;
|
|
}
|
|
|
|
html {
|
|
scrollbar-width: none;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: #f0f0f0;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'gaia-icons';
|
|
src: url('fonts/gaia-icons.ttf') format('truetype');
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
}
|
|
|
|
:root {
|
|
--left-transform: -100vw;
|
|
--right-transform: +100vw;
|
|
--li-base-height: 43px;
|
|
--li-left-padding: 10px;
|
|
--li-right-padding: 10px;
|
|
}
|
|
</style>
|
|
</body>
|
|
</html>
|