59 lines
887 B
CSS
59 lines
887 B
CSS
/*
|
|
SinarKasihMart Custom Styles
|
|
Primary: #0d6efd (Blue)
|
|
Secondary: #198754 (Green)
|
|
*/
|
|
|
|
body {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.navbar {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.card {
|
|
border-radius: 0.375rem;
|
|
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #0d6efd;
|
|
border-color: #0d6efd;
|
|
}
|
|
|
|
.btn-success {
|
|
background-color: #198754;
|
|
border-color: #198754;
|
|
}
|
|
|
|
.nav-link.active {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.product-card {
|
|
transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
|
|
}
|
|
|
|
.product-card:hover {
|
|
transform: translateY(-5px);
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|
|
|
|
#saleItemsModal .modal-body {
|
|
max-height: 400px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#salesChart {
|
|
max-height: 320px;
|
|
}
|
|
|
|
#bestSellingChart {
|
|
max-height: 320px;
|
|
}
|
|
|
|
.chart-container {
|
|
height: 400px; /* Adjust as needed */
|
|
}
|