Extracts inline styles from Razor pages into modular CSS files Adds new CSS files for components and specific page styles Improves code organization and maintainability by separating styling concerns Updates layout to include new CSS files and optional style sections
55 lines
985 B
CSS
55 lines
985 B
CSS
/* Dashboard Page Styles */
|
|
|
|
.dashboard-cards {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 16px;
|
|
}
|
|
|
|
.mini-stats {
|
|
display: flex;
|
|
gap: 16px;
|
|
}
|
|
|
|
.mini-stat {
|
|
text-align: center;
|
|
}
|
|
|
|
.mini-stat-value {
|
|
font-size: 18px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mini-stat-value.success { color: var(--success-color); }
|
|
.mini-stat-value.danger { color: var(--danger-color); }
|
|
|
|
.mini-stat-label {
|
|
font-size: 10px;
|
|
color: var(--muted-color);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.running-list, .failed-list {
|
|
border-top: 1px solid var(--border-color);
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.running-item, .failed-item {
|
|
font-size: 11px;
|
|
padding: 4px 0;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 6px;
|
|
}
|
|
|
|
.failed-header {
|
|
font-size: 10px;
|
|
color: var(--muted-color);
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
@media (max-width: 900px) {
|
|
.dashboard-cards {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
}
|