30 lines
518 B
CSS
30 lines
518 B
CSS
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.navbar {
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
|
|
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
|
|
}
|
|
|
|
.card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.card-title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.stat-number {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
color: #0d6efd;
|
|
}
|