-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
75 lines (73 loc) · 2.04 KB
/
index.html
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<link rel="icon" href="public/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="不定期更新"
/>
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<style>
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
color: #333;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}
header {
margin-bottom: 40px;
background-color: #273143;
color: #fefefe;
}
.wrapper {
max-width: 1280px;
margin: 0 auto;
padding: 0 30px;
}
header .wrapper {
padding: 12px 30px;
}
header h1 {
margin-top: 0;
font-size: 28px;
font-weight: normal;
}
footer.wrapper {
margin-top: 40px;
padding: 30px;
text-align: right;
color: #aaa;
}
</style>
<title>Kagashino Site</title>
</head>
<body>
<header>
<div class="wrapper">
<h1>KG-Site</h1>
</div>
</header>
<div id="root" class="wrapper"></div>
<footer class="wrapper">Powered by React</footer>
<script src="/src/index.tsx" type="module"></script>
</body>
</html>