-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinks.html
More file actions
162 lines (141 loc) · 3.63 KB
/
Copy pathlinks.html
File metadata and controls
162 lines (141 loc) · 3.63 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>其他链接-vm12的网站</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: url('https://uapis.cn/api/v1/image/bing-daily?random=false&resolution=1080&format=image');
background-size: cover ;
background-repeat: no-repeat;
background-attachment: fixed;
display: flex;
flex-direction: column;
min-height: 100vh;
}
header {
background-color: rgba(155, 110, 110, 0.4);
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;
}
div {
text-align: center;
margin: 50px 0px;
font-size: larger;
color: white;
}
main a {
margin: 10px;
height: 60px;
display: flex;
background-color: rgba(155, 110, 110, 0.4);
backdrop-filter: blur(5px);
border-radius: 7px;
box-shadow: 0 5px 15px rgba(20 ,20 ,20, 2);
border: 1px rgb(114, 114, 114) solid;
text-decoration: none;
transition: all 0.2s ease;
}
main a:hover {
box-shadow: 0 5px 15px rgba(46, 46, 46, 0.8);
}
main img {
height: 50px;
margin: 5px;
margin-left: 10px;
}
main a h2 {
color: white;
position: relative;
top: 10px;
left: 8px;
font-weight: 375;
}
footer {
background-color: rgba(155, 110, 110, 0.4);
backdrop-filter: blur(5px);
box-shadow: 0 5px 15px rgba(20 ,20 ,20, 0.8);
border: 1px rgb(114, 114, 114) solid;
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: white;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
footer p {
text-align: center;
color: white;
font-weight: lighter;
margin-top: 5px;
}
</style>
</head>
<body>
<header>
<img src="pictures/limtom.jpg" class="limtom">
<h1 style="color: white;">VMware12的网站</h1>
</header>
<main>
<div>
<h2>其他链接</h2>
</div>
<a href="ziyuan/ziyuan.html">
<img src="pictures/limtom.jpg">
<h2>VM12资源网站</h2>
</a>
<a href="https://space.bilibili.com/1102457035">
<img src="pictures/bilibili.png">
<h2>我的bilibili</h2>
</a>
<a href="https://wxpro.mysxl.cn/">
<img src="pictures/winxppro.jpg">
<h2>WinXPPro网站</h2>
</a>
<a href="https://colorfulcraft.github.io/CFCHistory/">
<img src="pictures/cfc.png">
<h2>ColorFulCraft官网</h2>
</a>
</main>
<footer>
<ul>
<a href="index.html">主页</a>
<a href="update.html">更新日志</a>
</ul>
<p>© 2026 limtom-pc All Rights Reserved</p>
</footer>
</body>
</html>