93 lines
1.8 KiB
CSS
93 lines
1.8 KiB
CSS
:root {
|
|
--primary-color: #0A2540;
|
|
--secondary-color: #F6F9FC;
|
|
--accent-color: #007BFF;
|
|
--text-dark: #32325D;
|
|
--text-light: #FFFFFF;
|
|
--border-color: #E6E6E6;
|
|
--font-family-headings: 'Poppins', sans-serif;
|
|
--font-family-body: 'Roboto', sans-serif;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-family-body);
|
|
background-color: var(--secondary-color);
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: var(--font-family-headings);
|
|
font-weight: 600;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-family: var(--font-family-headings);
|
|
font-weight: 700;
|
|
color: var(--primary-color) !important;
|
|
}
|
|
|
|
.hero {
|
|
background: linear-gradient(45deg, var(--primary-color), #1e3a5f);
|
|
color: var(--text-light);
|
|
padding: 4rem 1rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.hero h1 {
|
|
color: var(--text-light);
|
|
font-weight: 700;
|
|
}
|
|
|
|
.metric-card {
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 0.5rem;
|
|
padding: 1.5rem;
|
|
background-color: #fff;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.metric-card h4 {
|
|
font-size: 1.1rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.metric-card .value {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: var(--primary-color);
|
|
}
|
|
|
|
.incident-timeline {
|
|
border: 1px solid var(--border-color);
|
|
border-radius: 0.5rem;
|
|
background-color: #fff;
|
|
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
.incident-timeline .header {
|
|
padding: 1rem 1.5rem;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.incident-item {
|
|
display: flex;
|
|
padding: 1rem 1.5rem;
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
.incident-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.incident-item .icon {
|
|
margin-right: 1rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.incident-item .content .meta {
|
|
font-size: 0.85rem;
|
|
color: #6c757d;
|
|
}
|