-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwenye.html
More file actions
308 lines (265 loc) · 9.62 KB
/
wenye.html
File metadata and controls
308 lines (265 loc) · 9.62 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>文野同志 - CIC苏联分部书记</title>
<style>
body {
font-family: 'Times New Roman', serif;
background-color: #e0e0e0;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-image: url('Hammer_and_sickle_red_on_transparent.svg');
background-repeat: no-repeat;
background-position: right top;
background-size: 150px;
background-attachment: fixed;
}
header {
text-align: center;
border-bottom: 3px solid #cc0000;
/* padding-bottom: 10px;
margin-bottom: 20px; */
}
h1 {
color: #cc0000;
font-size: 28px;
text-transform: uppercase;
}
h2 {
color: #990000;
border-left: 5px solid #cc0000;
padding-left: 10px;
}
.logo {
width: 100px;
height: 100px;
margin: 0 auto;
display: block;
}
/* 导航栏样式 */
nav {
padding: 10px 0;
margin-bottom: 20px;
/* border-top: 2px solid #cc0000; */
border-bottom: 2px solid #cc0000;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
nav li {
margin: 0 15px;
}
nav a {
color: #cc0000;
text-decoration: none;
font-weight: bold;
padding: 5px 10px;
transition: all 0.3s ease;
}
nav a:hover {
text-decoration: underline;
color: #990000;
}
/* 响应式设计 */
@media (max-width: 600px) {
nav ul {
flex-direction: column;
align-items: center;
}
nav li {
margin: 5px 0;
}
nav {
padding: 5px 0;
}
}
.wenye-title {
text-align: center;
margin: 5px 0;
padding: 20px;
/* border-top: 2px solid #cc0000; */
border-bottom: 2px solid #cc0000;
}
.wenye-profile {
display: flex;
align-items: center;
justify-content: center;
gap: 30px;
}
.profile-image {
width: 150px;
height: 150px;
border-radius: 50%;
border: 3px solid #cc0000;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.wenye-info {
text-align: left;
}
.wenye-info a {
color: inherit;
text-decoration: none;
}
.wenye-info h1 {
margin-bottom: 10px;
color: #cc0000;
}
.wenye-info p {
color: #990000;
font-size: 18px;
}
@media (max-width: 600px) {
.wenye-profile {
flex-direction: column;
text-align: center;
}
.wenye-info {
text-align: center;
}
}
.soviet-banner {
background-color: #cc0000;
color: gold;
padding: 10px;
text-align: center;
font-weight: bold;
margin: 20px 0;
border-radius: 5px;
}
.propaganda {
background-color: #f5f5f5;
border: 1px solid #ddd;
padding: 15px;
margin: 15px 0;
font-style: italic;
}
.back-link {
display: inline-block;
color: #cc0000;
text-decoration: none;
font-weight: bold;
margin-top: 20px;
border: 2px solid #cc0000;
padding: 5px 15px;
transition: all 0.3s ease;
}
.back-link:hover {
background-color: #cc0000;
color: #fff;
}
.github-link {
display: inline-flex;
align-items: center;
color: #333;
text-decoration: none;
padding: 10px 15px;
background-color: #f5f5f5;
border: 1px solid #cc0000;
border-radius: 5px;
margin: 10px 0;
transition: all 0.3s ease;
}
.github-link:hover {
background-color: #cc0000;
color: #fff;
transform: translateY(-2px);
box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
.github-link:hover svg path {
fill: #fff;
}
.github-link svg {
transition: all 0.3s ease;
}
.achievements {
list-style-type: none;
padding: 0;
}
.achievements li {
margin: 10px 0;
padding: 10px;
border-left: 3px solid #cc0000;
background-color: #f5f5f5;
}
footer {
text-align: center;
margin-top: 30px;
padding-top: 10px;
border-top: 3px solid #cc0000;
font-size: 12px;
}
</style>
</head>
<body>
<header id="home">
<img src="logo.png" alt="CIC标志" class="logo">
<h1>Ассоциация компьютерной информации Восточно-Китайского университета науки и технологии — Советский сектор</h1>
<p>华东理工大学计算机信息交流协会 - 苏联分部</p>
</header>
<nav>
<ul>
<li><a href="/#home">首页</a></li>
<li><a href="/#news">最新公告</a></li>
<li><a href="/#mission">我们的使命</a></li>
<li><a href="/#plan">五年计划</a></li>
<li><a href="/#join">加入我们</a></li>
<li><a href="wenye.html">文野书记</a></li>
</ul>
</nav>
<div class="wenye-title">
<div class="wenye-profile">
<img src="https://cdn.jsdmirror.cn/gh/wenye01/wenye01.github.io@main/img/profile.jpg" alt="文野同志" class="profile-image">
<div class="wenye-info">
<h1>文野 同志</h1>
<p>CIC苏联分部委员会书记 | 图形学专家</p>
<p><a href="https://github.com/wenye01" target="_blank">GitHub</a> | <a href="https://wenye01.github.io" target="_blank">Blog</a> | <a href="https://wenye.ecustvr.top" target="_blank">Blog镜像</a></p>
</div>
</div>
</div>
<div class="soviet-banner">
"图形学是通向共产主义的窗口!" —— 文野
</div>
<h2>个人简介</h2>
<p>文野同志,我们伟大的CIC苏联分部委员会书记,是一位在计算机图形学领域做出杰出贡献的革命家。他将马克思列宁主义的革命思想与现代计算机图形学技术完美结合,为建设社会主义计算机科学事业做出了不可磨灭的贡献。</p>
<div class="propaganda">
"在图形学的世界里,每一个像素都闪耀着社会主义的光芒!"<br>
— 文野同志
</div>
<h2>图形学成就</h2>
<ul class="achievements">
<li>开发了革命性的图形渲染算法,大大提高了社会主义计算机图形的效率</li>
<li>创建了多个开源图形学项目,践行着"代码共产主义"的崇高理念</li>
<li>在GitHub上积极传播社会主义图形学思想,影响了全世界的进步程序员</li>
</ul>
<h2>开源贡献</h2>
<p>文野同志坚信,代码应该属于全人类。您可以在他的GitHub主页上找到他的开源贡献:</p>
<a href="https://github.com/wenye01" class="github-link" target="_blank">
<svg height="20" width="20" viewBox="0 0 16 16" version="1.1" aria-hidden="true" style="vertical-align: middle; margin-right: 5px;">
<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path>
</svg>
访问文野同志的GitHub主页 →
</a>
<h2>特别致谢</h2>
<p>本网站由文野同志支持!</p>
<div class="soviet-banner">
代码属于无产阶级!
</div>
<a href="/" class="back-link">← 返回主页</a>
<footer>
<p>华东理工大学计算机信息交流协会 苏联分部 © 1984</p>
<p>本网站使用 <span class="cyrillic">сервер</span> (服务器) 位于莫斯科</p>
<p>访问量: 19,980,101 (自1984年1月1日)</p>
<p>本网站纯属搞笑,请勿当真!</p>
<p>官方网站: <a href="//www.ecustcic.com/">www.ecustcic.com</a></p>
</footer>
</body>
</html>