style: 添加次要按钮样式

添加 btn-secondary 类的渐变背景和悬停效果,提供灰色系的次要按钮样式。

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
shaw
2025-08-05 17:31:12 +08:00
parent 7fa75df1fd
commit 98a2452698

View File

@@ -197,6 +197,21 @@
0 10px 10px -5px rgba(239, 68, 68, 0.1);
}
.btn-secondary {
background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
color: white;
box-shadow:
0 10px 15px -3px rgba(107, 114, 128, 0.3),
0 4px 6px -2px rgba(107, 114, 128, 0.05);
}
.btn-secondary:hover {
transform: translateY(-1px);
box-shadow:
0 20px 25px -5px rgba(107, 114, 128, 0.3),
0 10px 10px -5px rgba(107, 114, 128, 0.1);
}
/* 表单输入 */
.form-input {
background: rgba(255, 255, 255, 0.9);