TIF_NGANJUK_E41220461/public/css/manajemen-banner.css

709 lines
12 KiB
CSS

/* Manajemen Banner Container */
.manajemen-banner-container {
max-width: 1400px;
margin: 0 auto;
}
/* Page Header */
.page-header {
padding: 20px 0;
}
.page-title {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 2rem;
color: var(--dark);
margin-bottom: 0.5rem;
}
.page-subtitle {
color: #6c757d;
font-size: 1.1rem;
margin: 0;
}
/* Statistics Cards */
.stat-card {
background: white;
border-radius: var(--border-radius);
padding: 25px;
box-shadow: var(--shadow);
display: flex;
align-items: center;
gap: 20px;
transition: var(--transition);
border-left: 4px solid transparent;
}
.stat-card:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-lg);
}
.stat-card.primary {
border-left-color: var(--primary);
}
.stat-card.success {
border-left-color: #28a745;
}
.stat-card.warning {
border-left-color: #ffc107;
}
.stat-card.info {
border-left-color: #17a2b8;
}
.stat-icon {
width: 60px;
height: 60px;
border-radius: 15px;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.5rem;
color: white;
}
.stat-card.primary .stat-icon {
background: var(--gradient);
}
.stat-card.success .stat-icon {
background: linear-gradient(135deg, #28a745, #20c997);
}
.stat-card.warning .stat-icon {
background: linear-gradient(135deg, #ffc107, #fd7e14);
}
.stat-card.info .stat-icon {
background: linear-gradient(135deg, #17a2b8, #6f42c1);
}
.stat-content {
flex: 1;
}
.stat-value {
font-family: 'Poppins', sans-serif;
font-weight: 700;
font-size: 2rem;
color: var(--dark);
margin: 0;
line-height: 1;
}
.stat-label {
color: #6c757d;
font-size: 0.9rem;
margin: 5px 0 0 0;
font-weight: 500;
}
.banners-grid-card {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
transition: var(--transition);
border: 1px solid rgba(0, 0, 0, 0.05);
}
.banners-grid-card:hover {
box-shadow: var(--shadow-lg);
}
.banners-grid-card .card-header {
padding: 25px 30px 0;
border: none;
background: none;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
}
.banners-grid-card .card-body {
padding: 25px 30px 30px;
}
.header-content {
display: flex;
align-items: center;
flex: 1;
}
.header-icon {
font-size: 1.8rem;
color: var(--primary);
margin-right: 15px;
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--primary-light), var(--primary));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
}
.card-title {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 1.3rem;
color: var(--dark);
margin: 0;
}
.card-subtitle {
color: #6c757d;
font-size: 0.9rem;
margin: 5px 0 0 0;
}
.view-toggle {
display: flex;
gap: 5px;
background: #f8f9fa;
padding: 5px;
border-radius: 8px;
}
.view-btn {
width: 40px;
height: 40px;
border: none;
background: transparent;
border-radius: 6px;
color: #6c757d;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
}
.view-btn:hover {
background: white;
color: var(--primary);
}
.view-btn.active {
background: var(--primary);
color: white;
}
.banners-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 25px;
}
.banner-card {
background: white;
border-radius: var(--border-radius);
box-shadow: var(--shadow);
transition: var(--transition);
overflow: hidden;
border: 1px solid rgba(0, 0, 0, 0.05);
}
.banner-card:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-lg);
}
.banner-image {
position: relative;
height: 200px;
overflow: hidden;
}
.banner-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.banner-card:hover .banner-image img {
transform: scale(1.05);
}
.banner-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: var(--transition);
}
.banner-card:hover .banner-overlay {
opacity: 1;
}
.banner-badges {
position: absolute;
top: 10px;
left: 10px;
display: flex;
gap: 5px;
flex-direction: column;
}
.badge {
padding: 4px 8px;
border-radius: 12px;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.badge-urutan {
background: rgba(0, 0, 0, 0.8);
color: white;
}
.badge-active {
background: linear-gradient(135deg, #28a745, #20c997);
color: white;
}
.badge-inactive {
background: #6c757d;
color: white;
}
.banner-content {
padding: 20px;
}
.banner-title {
font-weight: 600;
color: var(--dark);
margin: 0 0 10px 0;
font-size: 1.1rem;
line-height: 1.4;
}
.banner-description {
color: #6c757d;
font-size: 0.9rem;
line-height: 1.5;
margin: 0 0 15px 0;
}
.banner-meta {
margin-bottom: 15px;
}
.banner-actions {
display: flex;
justify-content: space-between;
align-items: center;
}
.form-check.form-switch {
display: flex;
align-items: center;
gap: 10px;
margin: 0;
}
.form-check-input {
width: 3em;
height: 1.5em;
margin: 0;
}
.form-check-label {
font-size: 0.9rem;
color: var(--dark);
font-weight: 500;
}
.action-buttons {
display: flex;
gap: 8px;
}
.action-buttons .btn {
width: 36px;
height: 36px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
border: 2px solid;
transition: var(--transition);
}
.btn-edit {
color: var(--primary);
border-color: var(--primary) !important;
background: transparent;
}
.btn-edit:hover {
background: var(--primary);
color: white;
transform: translateY(-2px);
}
.btn-delete {
color: #dc3545;
border-color: #dc3545 !important;
background: transparent;
}
.btn-delete:hover {
background: #dc3545;
color: white;
transform: translateY(-2px);
}
.banners-list .banner-thumb {
width: 80px;
height: 60px;
border-radius: 8px;
overflow: hidden;
}
.banners-list .banner-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
}
.banners-list .banner-info h6 {
margin: 0 0 5px 0;
font-weight: 600;
}
.banners-list .banner-info p {
margin: 0;
color: #6c757d;
font-size: 0.9rem;
}
.urutan-badge {
background: var(--primary);
color: white;
padding: 4px 8px;
border-radius: 12px;
font-size: 0.8rem;
font-weight: 600;
}
.empty-state {
padding: 60px 20px;
text-align: center;
}
.empty-state h4 {
color: var(--dark);
margin-bottom: 10px;
font-weight: 600;
}
.empty-state p {
color: #6c757d;
max-width: 400px;
margin: 0 auto;
}
.modal-content {
border: none;
border-radius: var(--border-radius);
box-shadow: var(--shadow-xl);
}
.modal-header {
border-bottom: 1px solid #e9ecef;
padding: 25px 30px 20px;
}
.modal-title {
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: var(--dark);
display: flex;
align-items: center;
}
.modal-body {
padding: 25px 30px;
}
.modal-footer {
border-top: 1px solid #e9ecef;
padding: 20px 30px 25px;
}
.banner-upload-area {
position: relative;
}
.upload-wrapper {
border: 2px dashed #dee2e6;
border-radius: var(--border-radius);
padding: 40px 20px;
text-align: center;
cursor: pointer;
transition: var(--transition);
background: #f8f9fa;
}
.upload-wrapper:hover {
border-color: var(--primary);
background: #f0f4ff;
}
.upload-wrapper.dragover {
border-color: var(--primary);
background: #e3f2fd;
}
.upload-placeholder i {
font-size: 3rem;
color: #6c757d;
margin-bottom: 15px;
}
.upload-placeholder p {
font-weight: 600;
color: var(--dark);
margin: 0 0 10px 0;
}
.upload-placeholder small {
color: #6c757d;
line-height: 1.4;
}
.upload-input {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
cursor: pointer;
}
.image-preview {
position: relative;
border: 2px solid #e9ecef;
border-radius: var(--border-radius);
overflow: hidden;
margin-top: 15px;
}
.image-preview img {
width: 100%;
height: 200px;
object-fit: cover;
}
.btn-remove-preview {
position: absolute;
top: 10px;
right: 10px;
width: 30px;
height: 30px;
border: none;
background: rgba(220, 53, 69, 0.9);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.8rem;
transition: var(--transition);
}
.btn-remove-preview:hover {
background: #dc3545;
transform: scale(1.1);
}
.current-image-preview {
border: 2px solid #e9ecef;
border-radius: var(--border-radius);
overflow: hidden;
}
.current-image-preview img {
width: 100%;
height: 150px;
object-fit: cover;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-label {
font-weight: 600;
color: var(--dark);
margin-bottom: 8px;
display: block;
}
.form-control {
border: 2px solid #e9ecef;
border-radius: 8px;
padding: 12px 15px;
transition: var(--transition);
font-size: 0.95rem;
}
.form-control:focus {
border-color: var(--primary);
box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.1);
}
textarea.form-control {
resize: vertical;
min-height: 80px;
}
.btn {
padding: 12px 25px;
border-radius: 8px;
font-weight: 500;
transition: var(--transition);
border: none;
}
.btn-primary {
background: var(--gradient);
border: none;
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}
.btn-secondary {
background: #6c757d;
border: none;
}
.btn-secondary:hover {
background: #5a6268;
transform: translateY(-2px);
}
.btn-loading {
position: relative;
color: transparent !important;
}
.btn-loading::after {
content: '';
position: absolute;
width: 20px;
height: 20px;
top: 50%;
left: 50%;
margin-left: -10px;
margin-top: -10px;
border: 2px solid #ffffff;
border-radius: 50%;
border-top-color: transparent;
animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
@media (max-width: 991.98px) {
.page-header {
padding: 15px 0;
}
.page-title {
font-size: 1.7rem;
}
.stat-card {
padding: 20px;
}
.stat-value {
font-size: 1.7rem;
}
.banners-grid {
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 20px;
}
.banners-grid-card .card-header {
padding: 20px 25px 0;
flex-direction: column;
align-items: flex-start;
gap: 15px;
}
.header-content {
width: 100%;
}
}
@media (max-width: 767.98px) {
.banners-grid {
grid-template-columns: 1fr;
}
.modal-body {
padding: 20px 25px;
}
.modal-header,
.modal-footer {
padding: 20px 25px;
}
.banners-list .table-responsive {
font-size: 0.9rem;
}
}
@media (max-width: 575.98px) {
.manajemen-banner-container {
padding: 0 15px;
}
.page-title {
font-size: 1.5rem;
}
.stat-card {
flex-direction: column;
text-align: center;
gap: 15px;
}
.upload-placeholder {
padding: 30px 15px;
}
.upload-placeholder i {
font-size: 2.5rem;
}
}