26 lines
444 B
CSS
26 lines
444 B
CSS
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
}
|
|
|
|
.navbar-brand {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.table {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0D6EFD;
|
|
border-color: #0D6EFD;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #0A58CA;
|
|
border-color: #0A58CA;
|
|
} |