style: 导航页改用浅色渐变卡片风格
Deploy / deploy (push) Successful in 10s

This commit is contained in:
wonder
2026-08-23 14:57:45 +00:00
parent 24d2292539
commit 7add2d1a5b
+15 -15
View File
@@ -15,43 +15,43 @@ cat > "$OUTPUT" << 'HEADER'
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 50%, #dfe6ed 100%);
min-height: 100vh;
color: #e2e8f0;
color: #1e293b;
padding: 2rem;
}
.container { max-width: 800px; margin: 0 auto; }
h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
background: linear-gradient(135deg, #6366f1, #8b5cf6);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
color: #1e293b;
}
.subtitle { color: #94a3b8; margin-bottom: 2rem; }
.subtitle { color: #64748b; margin-bottom: 2rem; font-size: 1.1rem; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1rem; }
.card {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.1);
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 1.5rem;
text-decoration: none;
color: #e2e8f0;
color: #1e293b;
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
transition: all 0.2s;
display: flex;
align-items: center;
gap: 0.75rem;
}
.card:hover {
background: rgba(99,102,241,0.15);
border-color: rgba(99,102,241,0.4);
background: #faf5ff;
border-color: #c4b5fd;
box-shadow: 0 4px 12px rgba(139,92,246,0.1);
transform: translateY(-2px);
}
.card-icon { font-size: 1.5rem; }
.card-title { font-weight: 600; font-size: 1rem; }
.card-dir { color: #64748b; font-size: 0.8rem; }
.empty { color: #64748b; font-style: italic; }
footer { margin-top: 3rem; text-align: center; color: #475569; font-size: 0.85rem; }
.card-dir { color: #94a3b8; font-size: 0.8rem; }
.empty { color: #94a3b8; font-style: italic; }
footer { margin-top: 3rem; text-align: center; color: #94a3b8; font-size: 0.85rem; }
</style>
</head>
<body>
@@ -89,7 +89,7 @@ fi
cat >> "$OUTPUT" << 'FOOTER'
</div>
<footer>Powered by QwenPaw · 自动生成</footer>
<footer>Powered by QwenPaw · 图解算法</footer>
</div>
</body>
</html>