Files
SmsReceiver-go/static/css/style.css
OpenClaw Agent 4a31cd1115 initial commit: Go version of SMS Receiver with fixed template rendering
- Implemented all core features from Python version
- Fixed int64/int type compatibility in template functions
- Added login authentication, SMS receiving, statistics, logs
- Independent database: sms_receiver_go.db
- Fixed frontend display issues for message list and statistics
2026-02-08 17:15:22 +08:00

339 lines
5.5 KiB
CSS

/* 全局样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
/* 渐入动画 */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.navbar, .content, .stat-card {
animation: fadeIn 0.5s ease-out;
}
.navbar {
animation-delay: 0.1s;
}
.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.2s; }
.stat-card:nth-child(4) { animation-delay: 0.25s; }
/* 导航栏 */
.navbar {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px 25px;
border-radius: 10px;
margin-bottom: 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.nav-brand {
font-size: 1.5em;
font-weight: bold;
}
.nav-links a {
color: white;
text-decoration: none;
margin-left: 20px;
padding: 8px 15px;
border-radius: 5px;
transition: background-color 0.3s;
}
.nav-links a:hover {
background-color: rgba(255, 255, 255, 0.2);
}
/* 主要内容 */
.content {
background: white;
border-radius: 10px;
padding: 25px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/* 表格样式 */
table {
width: 100%;
border-collapse: collapse;
margin-top: 15px;
}
th, td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid #eee;
}
th {
background-color: #f8f9fa;
font-weight: 600;
color: #555;
}
tr:hover {
background-color: #f5f5f5;
}
/* 搜索框 */
.search-box {
display: flex;
gap: 10px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.search-box input, .search-box select {
padding: 10px 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 14px;
}
.search-box input[type="text"] {
flex: 1;
min-width: 200px;
}
.search-box button {
padding: 10px 20px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: opacity 0.3s;
}
.search-box button:hover {
opacity: 0.9;
}
/* 分页 */
.pagination {
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
gap: 10px;
}
.pagination a {
padding: 8px 15px;
background-color: #667eea;
color: white;
text-decoration: none;
border-radius: 5px;
}
.pagination a:hover {
background-color: #5a6fd6;
}
.pagination span {
color: #666;
}
/* 登录表单 */
.login-container {
max-width: 400px;
margin: 100px auto;
text-align: center;
}
.login-form {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.login-form h2 {
margin-bottom: 30px;
color: #333;
}
.form-group {
margin-bottom: 20px;
}
.form-group input {
width: 100%;
padding: 12px 15px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 16px;
}
.form-group button {
width: 100%;
padding: 12px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
}
.error {
color: #e74c3c;
margin-bottom: 15px;
}
/* 详情页面 */
.detail-container {
max-width: 800px;
margin: 0 auto;
}
.detail-item {
margin-bottom: 20px;
padding: 15px;
background: #f8f9fa;
border-radius: 5px;
}
.detail-label {
font-weight: 600;
color: #555;
margin-bottom: 5px;
}
.detail-value {
color: #333;
word-break: break-all;
}
/* 统计卡片 */
.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
margin-bottom: 30px;
}
.stat-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 25px;
border-radius: 10px;
text-align: center;
}
.stat-card h3 {
font-size: 2.5em;
margin-bottom: 10px;
}
.stat-card p {
opacity: 0.9;
}
.stat-card.green {
background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}
.stat-card.orange {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
/* 响应式 */
@media (max-width: 768px) {
.navbar {
flex-direction: column;
gap: 15px;
}
.nav-links {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.search-box {
flex-direction: column;
}
.stats-grid {
grid-template-columns: 1fr;
}
}
/* 徽章 */
.badge {
display: inline-block;
padding: 4px 8px;
border-radius: 4px;
font-size: 12px;
font-weight: 600;
}
.badge-success {
background-color: #d4edda;
color: #155724;
}
.badge-danger {
background-color: #f8d7da;
color: #721c24;
}
.badge-warning {
background-color: #fff3cd;
color: #856404;
}
/* 空状态 */
.empty-state {
text-align: center;
padding: 50px;
color: #888;
}
.empty-state h3 {
margin-bottom: 10px;
}
/* 统计表格 */
.stats-table {
margin-top: 20px;
}
.stats-table td {
padding: 15px;
}
.stats-table tr:hover {
background-color: #f8f9fa;
}