41 lines
685 B
CSS
41 lines
685 B
CSS
body {
|
|
font-family: 'Lato', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, .navbar-brand, .display-5 {
|
|
font-family: 'Poppins', sans-serif;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #4A90E2;
|
|
border-color: #4A90E2;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #357ABD;
|
|
border-color: #357ABD;
|
|
}
|
|
|
|
.btn-outline-primary {
|
|
color: #4A90E2;
|
|
border-color: #4A90E2;
|
|
}
|
|
|
|
.btn-outline-primary:hover {
|
|
background-color: #4A90E2;
|
|
color: #fff;
|
|
}
|
|
|
|
.badge.bg-secondary {
|
|
background-color: #F5A623 !important;
|
|
}
|
|
|
|
.table-hover tbody tr:hover {
|
|
background-color: #e9ecef;
|
|
}
|
|
|
|
.navbar-light .navbar-brand {
|
|
color: #333;
|
|
font-weight: 600;
|
|
} |