23 lines
478 B
CSS
23 lines
478 B
CSS
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: .75rem;
|
|
box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
.card-icon {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.75rem;
|
|
}
|
|
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
|
|
background-color: #0d6efd;
|
|
} |