-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiff.html
More file actions
37 lines (35 loc) · 879 Bytes
/
Copy pathdiff.html
File metadata and controls
37 lines (35 loc) · 879 Bytes
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
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CN-Codex Diff 对比</title>
<style>
html, body, #root {
width: 100%;
height: 100%;
margin: 0;
background: #1a1a1a;
}
body {
color: #d1d5db;
font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}
.boot-splash {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
font-size: 12px;
letter-spacing: 0.06em;
opacity: 0.82;
}
</style>
</head>
<body>
<div id="root">
<div class="boot-splash">Diff 独立窗口加载中...</div>
</div>
<script type="module" src="/src/diff-main.tsx"></script>
</body>
</html>