XiYun/mx.html

81 lines
2.3 KiB
HTML
Raw Normal View History

2024-08-29 08:50:16 +08:00
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>鸣谢名单</title>
<style>
body {
font-family: 'Microsoft YaHei', Arial, sans-serif;
background-color: #f4f4f4;
padding: 20px;
margin: 0;
background-image: url('picture/wallpaper.jpg');
background-size: cover;
background-attachment: fixed;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: rgba(255, 255, 255, 0.9);
padding: 40px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 8px;
backdrop-filter: blur(10px);
}
h1 {
text-align: center;
color: #333;
margin-bottom: 30px;
font-weight: bold;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
ul {
list-style-type: none;
padding: 0;
}
ul li {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
color: #555;
font-size: 1.2em;
position: relative;
transition: all 0.3s ease;
}
ul li::before {
content: '🌟';
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
color: #f1c40f;
}
ul li:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
z-index: 10;
}
ul li:hover::before {
color: #e67e22;
}
ul li:last-child {
margin-bottom: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>鸣谢名单</h1>
<p>感谢以下人员/组织对我们的支持和帮助:</p>
<ul>
<li>💮朝夕 - Stay with me</li>
<li>💮初心.杰</li>
<!-- 在此处添加更多鸣谢名单 -->
</ul>
</div>
</body>
</html>