106 lines
2.8 KiB
HTML
106 lines
2.8 KiB
HTML
<!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>
|
|
:root {
|
|
--bg-color: #1e1e1e;
|
|
--card-bg: #2d2d2d;
|
|
--text-color: #e0e0e0;
|
|
--accent-color: #ff7b00; /* 匹配你截图中的橙色调 */
|
|
--hover-color: #ff9533;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Segoe UI', system-ui, sans-serif;
|
|
background-color: var(--bg-color);
|
|
color: var(--text-color);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 40px 20px;
|
|
margin: 0;
|
|
}
|
|
|
|
h1 {
|
|
font-weight: 300;
|
|
margin-bottom: 30px;
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
.nav-container {
|
|
width: 100%;
|
|
max-width: 500px;
|
|
display: grid;
|
|
gap: 15px;
|
|
}
|
|
|
|
.nav-item {
|
|
background: var(--card-bg);
|
|
padding: 18px 25px;
|
|
border-radius: 8px;
|
|
text-decoration: none;
|
|
color: var(--text-color);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
transition: transform 0.2s, background 0.2s;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.nav-item:hover {
|
|
transform: translateX(10px);
|
|
background: #383838;
|
|
border-color: var(--accent-color);
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 15px;
|
|
color: var(--accent-color);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.file-name {
|
|
flex-grow: 1;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.arrow {
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>目录:</h1>
|
|
|
|
<div class="nav-container">
|
|
<a href="countdown_s.html" class="nav-item">
|
|
<span class="icon"></></span>
|
|
<span class="file-name">特殊倒计时</span>
|
|
<span class="arrow">→</span>
|
|
</a>
|
|
|
|
<a href="countdown.html" class="nav-item">
|
|
<span class="icon"></></span>
|
|
<span class="file-name">普通倒计时</span>
|
|
<span class="arrow">→</span>
|
|
</a>
|
|
|
|
<a href="resum.html" class="nav-item">
|
|
<span class="icon"></></span>
|
|
<span class="file-name">简历生成器</span>
|
|
<span class="arrow">→</span>
|
|
</a>
|
|
|
|
<a href="todo.html" class="nav-item">
|
|
<span class="icon"></></span>
|
|
<span class="file-name">待办事项</span>
|
|
<span class="arrow">→</span>
|
|
</a>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |