-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (44 loc) · 1.14 KB
/
index.html
File metadata and controls
52 lines (44 loc) · 1.14 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SDUT OJ Certificate</title>
<style>
:root {
--bg-color: #f4f4f4;
--menu-color: #ffffffb3;
--font-color: #000000bf;
--box-shadow-color: rgba(0, 0, 0, 0.1);
--footer-bg: #eaeaea;
--btn-bg: #eaeaea;
--sub-color: #777777;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #191919;
--menu-color: #2e2e2ecc;
--font-color: #DFDFDF;
--box-shadow-color: rgb(255, 255, 255, 0.1);
--footer-bg: #0f0f0f;
--btn-bg: #2e2e2e;
--sub-color: #c6c6c6;
}
}
html {
overflow-x: hidden;
padding: 0;
}
body {
margin: 0;
overflow-x: hidden;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>