33 lines
896 B
HTML
33 lines
896 B
HTML
<!--suppress CssUnknownTarget, HtmlUnknownTarget -->
|
|
<!doctype html>
|
|
<html lang="zh">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<link href="icon.png" rel="icon"/>
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
|
<title>我的书架</title>
|
|
<style>
|
|
html, body, #root {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'LXGWWenKai';
|
|
src: url('fonts/LXGWNeoXiHei.ttf') format('truetype');
|
|
}
|
|
|
|
*:not(.fa,.fas) {
|
|
font-family: LXGWWenKai, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', serif !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="/src/index.tsx" type="module"></script>
|
|
</body>
|
|
</html>
|