-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.html
More file actions
138 lines (124 loc) · 3.2 KB
/
Copy pathupdate.html
File metadata and controls
138 lines (124 loc) · 3.2 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>更新日志</title>
</head>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: rgba(0, 0, 0, 0.719);
backdrop-filter: blur(5px);
border-radius: 7px;
box-shadow: 0 5px 15px rgba(20 ,20 ,20, 0.8);
border: 1px rgb(114, 114, 114) solid;
max-width: 100%;
height: 80px;
display: flex;
justify-content: center;
align-items: center;
margin: 5px
}
.limtom {
height: 50px;
}
h1 {
font-size: 30px;
margin-left: 20px;
}
h2 {
text-align: center;
margin-top: 20px;
margin-bottom: 10px;
}
div {
margin: 10px 10vw;
}
main p {
text-align: center;
}
footer {
max-width: 100%;
height: 70px;
margin-top: auto;
padding-top: 15px;
}
footer ul {
line-height: 15px;
padding: 0px;
display: flex;
justify-content: center;
gap: 20px;
}
footer a {
color: black;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
footer p{
text-align: center;
font-weight: lighter;
margin-top: 5px;
}
</style>
<body>
<header>
<img src="pictures/limtom.jpg" class="limtom">
<h1 style="color: white;">VMware12的网站</h1>
</header>
<h2>更新日志</h2>
<main>
<div>
<p>2024.8.18</p>
<p>开启项目,网站版本为0.1</p>
</div>
<div>
<p>2024.8.29</p>
<p>第二次更新,网站版本为1.0</p>
</div>
<div>
<p>2025.8.30</p>
<p>第三次更新,界面得到了大幅改动,版本为2.0</p>
</div>
<div>
<p>2025.11.23</p>
<p>友情链接内更换部分链接,网站内一部分图片上传至图床(已作废),新增更新日志</p>
</div>
<div>
<p>2026.2.12</p>
<p>修复部分图片不能展示问题</p>
</div>
<div>
<p>2026.2.14</p>
<p>界面得到更改,适配手机端,新增一些链接</p>
</div>
<div>
<p>2026.8.11</p>
<p>解决了bing每日图片壁纸无法显示的问题,主页排版更改,新增每日一言,将资源站链接搬迁至其他链接</p>
</div>
<div>
<p>2026.8.12</p>
<p>解决了bing每日图片壁纸不更新问题,优化更新日志页面页脚显示,在其他链接页面中实现点击卡片直接跳转至其他网站,主页的按钮和其他链接的卡片添加了动画效果</p>
</div>
</main>
<footer>
<ul>
<a href="index.html">主页</a>
<a href="links.html">其他链接</a>
</ul>
<p>© 2026 limtom-pc All Rights Reserved</p>
</footer>
</body>
</html>