Files
KarbonDatacenter/resources/sass/app.scss
2026-06-24 20:32:14 +08:00

77 lines
1.4 KiB
SCSS

// Sistem Pemantauan Kemampanan Pusat Data MBIP — gaya aplikasi
$primary: #0a5c36; // hijau kemampanan
$secondary: #5c6b73;
@import "bootstrap/scss/bootstrap";
@import "bootstrap-icons/font/bootstrap-icons.css";
body {
background-color: #f4f6f8;
font-size: 0.925rem;
}
.sidebar {
min-height: 100vh;
background: linear-gradient(180deg, #0a5c36 0%, #074026 100%);
}
.sidebar .nav-link {
color: rgba(255, 255, 255, 0.85);
border-radius: 0.375rem;
margin-bottom: 2px;
font-weight: 500;
}
.sidebar .nav-link:hover,
.sidebar .nav-link.active {
background-color: rgba(255, 255, 255, 0.15);
color: #fff;
}
.sidebar .nav-link i {
width: 1.25rem;
text-align: center;
margin-right: 0.5rem;
}
.sidebar-brand {
color: #fff;
font-weight: 700;
line-height: 1.2;
}
.card {
border: none;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.stat-card .stat-value {
font-size: 1.75rem;
font-weight: 700;
}
.table thead th {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.03em;
color: #6c757d;
}
.checklist-section-header {
background-color: #e9f3ee;
border-left: 4px solid $primary;
}
.chat-message {
border-radius: 0.5rem;
padding: 0.5rem 0.75rem;
margin-bottom: 0.5rem;
background: #fff;
border: 1px solid #e3e7ea;
}
.chat-message.internal {
background: #fff8e1;
border-color: #ffe082;
}