Update static/styles.css
Browse files- static/styles.css +49 -0
static/styles.css
CHANGED
|
@@ -399,3 +399,52 @@ footer {
|
|
| 399 |
padding: 0.75rem 1.5rem;
|
| 400 |
}
|
| 401 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 399 |
padding: 0.75rem 1.5rem;
|
| 400 |
}
|
| 401 |
}
|
| 402 |
+
/* 在现有样式文件末尾添加 */
|
| 403 |
+
|
| 404 |
+
.admin-actions {
|
| 405 |
+
display: flex;
|
| 406 |
+
justify-content: center;
|
| 407 |
+
margin: 1rem 0;
|
| 408 |
+
}
|
| 409 |
+
|
| 410 |
+
.btn-admin {
|
| 411 |
+
background-color: rgba(255, 255, 255, 0.1);
|
| 412 |
+
color: var(--text-color);
|
| 413 |
+
border: 1px solid rgba(255, 255, 255, 0.2);
|
| 414 |
+
padding: 0.6rem 1.2rem;
|
| 415 |
+
border-radius: 4px;
|
| 416 |
+
cursor: pointer;
|
| 417 |
+
transition: all 0.3s;
|
| 418 |
+
display: flex;
|
| 419 |
+
align-items: center;
|
| 420 |
+
gap: 0.5rem;
|
| 421 |
+
font-size: 0.9rem;
|
| 422 |
+
}
|
| 423 |
+
|
| 424 |
+
.btn-admin:hover {
|
| 425 |
+
background-color: rgba(255, 255, 255, 0.2);
|
| 426 |
+
}
|
| 427 |
+
|
| 428 |
+
/* 统计信息样式 */
|
| 429 |
+
.statistics {
|
| 430 |
+
background-color: rgba(25, 25, 35, 0.6);
|
| 431 |
+
border-radius: 8px;
|
| 432 |
+
padding: 0.75rem;
|
| 433 |
+
margin-top: 1rem;
|
| 434 |
+
font-size: 0.85rem;
|
| 435 |
+
color: rgba(255, 255, 255, 0.7);
|
| 436 |
+
}
|
| 437 |
+
|
| 438 |
+
.statistics h4 {
|
| 439 |
+
margin: 0 0 0.5rem 0;
|
| 440 |
+
color: var(--accent-color);
|
| 441 |
+
}
|
| 442 |
+
|
| 443 |
+
.statistics ul {
|
| 444 |
+
margin: 0;
|
| 445 |
+
padding-left: 1.5rem;
|
| 446 |
+
}
|
| 447 |
+
|
| 448 |
+
.statistics li {
|
| 449 |
+
margin-bottom: 0.25rem;
|
| 450 |
+
}
|