-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (54 loc) · 1.69 KB
/
index.html
File metadata and controls
54 lines (54 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="icon" type="image/x-icon" href="/favicon.ico">
<!-- 主题颜色(控制浏览器地址栏/状态栏颜色)-->
<meta name="theme-color" content="#18181c" id="theme-color-meta">
<title>MAA 日志分析器</title>
<script async src="https://cloud.umami.is/script.js" data-website-id="14964f46-1293-4fc8-82c3-09446ba85c11"></script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
width: 100%;
height: 100%;
}
/* 初始主题由 VS Code 变量或应用主题控制 */
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: var(--vscode-panel-background, #18181c);
color: var(--vscode-foreground, rgba(255, 255, 255, 0.82));
}
#app {
height: 100vh;
overflow: hidden;
}
/* 启动占位,避免白/黑屏 */
#app:empty {
display: flex;
align-items: center;
justify-content: center;
background: var(--vscode-panel-background, #18181c);
color: var(--vscode-foreground, rgba(255, 255, 255, 0.62));
font-size: 12px;
letter-spacing: 0.4px;
}
#app:empty::before {
content: "正在加载 MAA 日志分析器...";
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>