49 lines
904 B
CSS
49 lines
904 B
CSS
/* Your custom CSS goes here */
|
|
|
|
body {
|
|
background-color: #F6F9FC;
|
|
font-family: 'Source Sans Pro', sans-serif;
|
|
color: #32325D;
|
|
}
|
|
|
|
.dashboard-container {
|
|
padding: 2rem;
|
|
}
|
|
|
|
.dashboard-title {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-weight: 600;
|
|
color: #0A2540;
|
|
}
|
|
|
|
.metric-card {
|
|
border: none;
|
|
border-radius: 12px;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
background: #FFFFFF;
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.metric-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
|
|
}
|
|
|
|
.metric-card .card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.metric-card .card-title {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: #525f7f;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.metric-card .card-text {
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
color: #0A2540;
|
|
}
|