125 lines
2.1 KiB
CSS
125 lines
2.1 KiB
CSS
/* assets/css/custom.css */
|
|
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background-color: #F8F9FA;
|
|
color: #212529;
|
|
}
|
|
|
|
.sidebar {
|
|
background-color: #2c3e50;
|
|
height: 100vh;
|
|
position: sticky;
|
|
top: 0;
|
|
}
|
|
|
|
.sidebar .nav-link {
|
|
color: rgba(255, 255, 255, 0.7);
|
|
border-radius: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.sidebar .nav-link:hover {
|
|
color: #ffffff;
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.sidebar .nav-link.active {
|
|
color: #ffffff;
|
|
background-color: #4A90E2;
|
|
}
|
|
|
|
.sidebar .nav-link .bi {
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.sidebar hr {
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.main-content {
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.btn-primary-custom {
|
|
background-color: #4A90E2;
|
|
border-color: #4A90E2;
|
|
color: #ffffff;
|
|
padding: 0.75rem 1.25rem;
|
|
border-radius: 0.5rem;
|
|
font-weight: 600;
|
|
transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
|
|
}
|
|
|
|
.btn-primary-custom:hover {
|
|
background-color: #357ABD;
|
|
border-color: #357ABD;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15) !important;
|
|
}
|
|
|
|
.card .card-header {
|
|
background-color: #fff;
|
|
border-bottom: 1px solid #e3e6f0;
|
|
padding: 1rem 1.25rem;
|
|
}
|
|
|
|
.card .card-body {
|
|
padding: 1.5rem;
|
|
}
|
|
|
|
.border-left-primary {
|
|
border-left: 0.25rem solid #4A90E2 !important;
|
|
}
|
|
|
|
.text-primary {
|
|
color: #4A90E2 !important;
|
|
}
|
|
|
|
.border-left-success {
|
|
border-left: 0.25rem solid #1cc88a !important;
|
|
}
|
|
|
|
.text-success {
|
|
color: #1cc88a !important;
|
|
}
|
|
|
|
.border-left-info {
|
|
border-left: 0.25rem solid #36b9cc !important;
|
|
}
|
|
|
|
.text-info {
|
|
color: #36b9cc !important;
|
|
}
|
|
|
|
.text-gray-300 {
|
|
color: #dddfeb !important;
|
|
}
|
|
|
|
.text-gray-800 {
|
|
color: #5a5c69 !important;
|
|
}
|
|
|
|
.font-weight-bold {
|
|
font-weight: 700 !important;
|
|
}
|
|
|
|
.text-xs {
|
|
font-size: .7rem;
|
|
}
|
|
|
|
.form-control, .form-select {
|
|
border-radius: 0.5rem;
|
|
padding: 0.75rem 1rem;
|
|
}
|
|
|
|
.form-control:focus, .form-select:focus {
|
|
box-shadow: 0 0 0 0.25rem rgba(74, 144, 226, 0.25);
|
|
border-color: #4A90E2;
|
|
}
|