Files
aurora-admin/frameworks/Card.css
T

16 lines
695 B
CSS

/* Aurora Admin Card 样式 — 对齐 components.css 与 card.json 契约 */
.aa-card {
background: #fff; border-radius: 8px; box-sizing: border-box;
min-width: 280px; max-width: 360px;
}
.aa-card--bordered { border: 1px solid #E8ECF1; }
.aa-card--shadowed { box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.aa-card__header {
display: flex; align-items: center; justify-content: space-between; gap: 8px;
font-weight: 600; color: #1F2329;
}
.aa-card__title { font-size: 16px; }
.aa-card__extra { color: #2F54EB; font-size: 14px; cursor: pointer; }
.aa-card__body { color: #262626; font-size: 14px; line-height: 22px; }
.aa-card__actions { display: flex; justify-content: flex-end; gap: 8px; }