添加更详细的信息查询

This commit is contained in:
CN-JS-HuiBai
2026-04-04 22:05:53 +08:00
parent d0bd05409d
commit ba712f1907
5 changed files with 244 additions and 3 deletions

View File

@@ -1254,6 +1254,43 @@ input:checked+.slider:before {
align-items: center;
}
/* ---- Server Detail Grid ---- */
.detail-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
margin-top: 10px;
}
.detail-item {
background: var(--bg-card);
border: 1px solid var(--border-color);
padding: 16px;
border-radius: var(--radius-md);
display: flex;
flex-direction: column;
gap: 8px;
}
.detail-label {
font-size: 0.75rem;
font-weight: 600;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.detail-value {
font-family: var(--font-mono);
font-size: 1.1rem;
font-weight: 700;
color: var(--accent-indigo);
}
:root.light-theme .detail-value {
color: var(--accent-blue);
}
/* ---- Animations ---- */
@keyframes fadeInUp {
from {