-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
174 lines (164 loc) · 4.45 KB
/
Copy pathabout.html
File metadata and controls
174 lines (164 loc) · 4.45 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - Lyon Dev</title>
<!-- <link rel="stylesheet" href="../style.css" /> -->
<style>
* {
box-sizing: border-box;
font-family:
"Roboto Condensed",
-apple-system,
"Microsoft YaHei",
"Arial",
system-ui;
line-height: 1.5;
color: #333;
/* font-style: normal; */
text-autospace: normal;
}
body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
#main {
display: flex;
flex-direction: column;
padding: 50px 150px;
flex: 1;
}
footer {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
padding: 23px 150px;
flex-shrink: 0;
}
footer * {
padding: 0;
margin: 0;
}
.post-link {
text-decoration: none;
}
.post-link:hover {
color: #aa0707;
}
/* 继承的优先级是最低的 */
blockquote {
color: #777777;
border-left: 5px solid #efefef;
padding-left: 20px; /* border 和文字之间的空隙 */
}
blockquote * {
color: #777777;
}
code {
background-color: #efefef;
padding: 2px;
border-radius: 2px;
}
</style>
</head>
<body>
<main id="main">
<h1 style="margin: 0px">
<a
href="home.html"
class="post-link"
target="main-frame"
style="text-decoration: none; margin: 0px"
>~/</a
>
</h1>
<hr width="100%" style="margin-top: 0px; margin-bottom: 40px" />
<h1>About me</h1>
<figure>
<pre>
________________________
< I'm an expert in my field. >
---------------------------------------
\ ^__^
\ (oo)\_______
(__)\ )\/\
||-------w |
|| ||
</pre>
</figure>
<p>你应该想象不到为了让这只奶牛在该字体下正常显示,我花了多少功夫</p>
<hr />
<p>Coming soon …</p>
</main>
<hr style="width: calc(100% - 300px); margin: auto" />
<footer>
<div style="display: flex; flex-direction: column">
<div style="display: flex">
<div
style="display: flex; align-self: flex-start; gap: 70px; flex: 1"
>
<div style="display: flex; flex-direction: column">
<p style="font-size: 20px; margin-bottom: 16px; font-weight: 800">
友链
</p>
<p>
<a href="https://tzblog.tech" target="_blank" class="post-link"
>小周的笔记</a
>
</p>
<p>
<a
href="https://homura.great-site.net/blog/?i=1"
target="_blank"
class="post-link"
>lhc's ideas</a
>
</p>
<p>Q</p>
<p>
<a href="https://naoh3326.xyz" target="_blank" class="post-link"
>NaOh</a
>
</p>
</div>
<div style="display: flex; flex-direction: column">
<p style="margin-bottom: 16px; font-size: 20px; font-weight: 800">
评论
</p>
<p style="color: #acb02b">Coming soon</p>
</div>
</div>
<div style="margin-left: auto">
<img
src="images/footer.webp"
alt="footer-links"
style="
width: 300px;
margin-left: auto;
display: block;
margin-top: -7px;
"
/>
</div>
</div>
<div style="display: flex; justify-content: center">
<p
style="
color: #555555;
margin-top: 14px;
margin-bottom: -7px;
font-family: Source Sans Pro;
"
>
© 2026 Lyon Chow. All rights reserved.
</p>
</div>
</div>
</footer>
</body>
</html>