-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
160 lines (140 loc) · 2.85 KB
/
Copy pathindex.html
File metadata and controls
160 lines (140 loc) · 2.85 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NonFriedChips</title>
<style>
:root {
color-scheme: light dark;
--background: #ffffff;
--foreground: #333333;
--muted: #6a737d;
--link: #4183c4;
--border: #e5e7eb;
--code-background: #f6f8fa;
}
* {
box-sizing: border-box;
}
html {
background: var(--background);
color: var(--foreground);
font-family: "Open Sans", "Clear Sans", "Helvetica Neue", Helvetica,
Arial, "Segoe UI Emoji", "SF Pro", sans-serif;
font-size: 16px;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
body {
margin: 0;
}
main {
max-width: 860px;
margin: 0 auto;
padding: 36px 30px 100px;
overflow-wrap: break-word;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 1rem 0;
line-height: 1.25;
}
h1 { font-size: 2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }
p,
ul,
ol,
blockquote,
pre,
table {
margin: 1rem 0;
}
ul,
ol {
padding-left: 2.5rem;
}
a {
color: var(--link);
text-decoration: none;
}
a:hover,
a:focus-visible {
text-decoration: underline;
}
img {
max-width: 100%;
height: auto;
}
blockquote {
margin-left: 0;
padding-left: 1rem;
color: var(--muted);
border-left: 4px solid var(--border);
}
code,
pre {
font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
background: var(--code-background);
border-radius: 4px;
}
code {
padding: 0.15em 0.35em;
}
pre {
padding: 1rem;
overflow-x: auto;
}
pre code {
padding: 0;
}
table {
width: 100%;
border-collapse: collapse;
}
th,
td {
padding: 0.5rem 0.75rem;
border: 1px solid var(--border);
text-align: left;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #161b22;
--foreground: #e6edf3;
--muted: #8b949e;
--link: #58a6ff;
--border: #30363d;
--code-background: #0d1117;
}
}
@media (max-width: 500px) {
main {
padding: 24px 20px 64px;
}
}
</style>
</head>
<body>
<main>
<h3 id="nonfriedchips"><a
href="https://kawaiii.wiki">NonFriedChips</a></h3>
<h3 id="welcome">Welcome</h3>
<p>Hello. This is NonFriedChips!</p>
<ul>
<li><strong><a
href="https://blog.kawaiii.wiki">blog.kawaiii.wiki</a></strong></li>
<li><a href="https://forum.kawaiii.wiki">kawaiii大论坛
forum.kawaiii.wiki</a></li>
</ul>
</main>
</body>
</html>