Files
nimbusflow/frontend/wwwroot/css/nimbusflow.css

641 lines
15 KiB
CSS

/* NimbusFlow Custom Styles */
:root {
/* Primary Brand Colors */
--nimbus-navy: #1a2332; /* Deep navy background */
--nimbus-navy-light: #2a3441; /* Lighter navy variant */
--nimbus-navy-dark: #0f1419; /* Darker navy variant */
/* Golden Accent Colors */
--nimbus-gold: #ffd700; /* Primary gold */
--nimbus-gold-light: #ffed4e; /* Light gold highlight */
--nimbus-gold-dark: #e6c200; /* Dark gold shadow */
--nimbus-amber: #ffb347; /* Warm amber accent */
/* Neutral Colors */
--nimbus-white: #ffffff; /* Pure white */
--nimbus-gray-100: #f8f9fa; /* Light gray */
--nimbus-gray-300: #dee2e6; /* Medium light gray */
--nimbus-gray-600: #6c757d; /* Medium gray */
--nimbus-gray-800: #343a40; /* Dark gray */
/* Bootstrap overrides */
--bs-primary: var(--nimbus-navy);
--bs-primary-rgb: 26, 35, 50;
--bs-secondary: var(--nimbus-gold);
--bs-secondary-rgb: 255, 215, 0;
--bs-warning: var(--nimbus-amber);
--bs-warning-rgb: 255, 179, 71;
}
/* Body and base styles - Dark Mode */
body {
background-color: var(--nimbus-navy-dark);
color: var(--nimbus-white);
}
.content {
background-color: var(--nimbus-navy-dark);
min-height: 100vh;
}
/* Navigation styles */
.nimbus-navbar {
background-color: var(--nimbus-navy) !important;
border-bottom: 3px solid var(--nimbus-gold);
box-shadow: 0 2px 10px rgba(26, 35, 50, 0.2);
}
.nimbus-navbar .navbar-brand {
color: var(--nimbus-white) !important;
font-weight: 600;
font-size: 1.5rem;
}
.nimbus-navbar .navbar-brand:hover {
color: var(--nimbus-gold-light) !important;
}
.nimbus-navbar .nav-link {
color: var(--nimbus-white) !important;
font-weight: 500;
transition: color 0.3s ease;
}
.nimbus-navbar .nav-link:hover,
.nimbus-navbar .nav-link.active {
color: var(--nimbus-gold) !important;
background-color: rgba(255, 215, 0, 0.1);
border-radius: 0.375rem;
}
/* Brand icon */
.nimbus-brand-icon {
color: var(--nimbus-gold);
margin-right: 0.5rem;
font-size: 1.8rem;
}
/* Card styles - Dark Mode */
.nimbus-card {
border: none;
border-radius: 0.75rem;
background-color: var(--nimbus-navy);
color: var(--nimbus-white);
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nimbus-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}
.nimbus-card-header {
background-color: var(--nimbus-navy-light);
color: var(--nimbus-white);
border-radius: 0.75rem 0.75rem 0 0 !important;
padding: 1rem 1.25rem;
font-weight: 600;
}
/* Button styles */
.btn-nimbus-primary {
background-color: var(--nimbus-gold);
border-color: var(--nimbus-gold-dark);
color: var(--nimbus-navy);
font-weight: 600;
border-radius: 0.5rem;
transition: all 0.3s ease;
}
.btn-nimbus-primary:hover {
background-color: var(--nimbus-gold-dark);
border-color: var(--nimbus-gold-dark);
color: var(--nimbus-navy);
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}
.btn-nimbus-secondary {
background-color: var(--nimbus-navy);
border-color: var(--nimbus-navy);
color: var(--nimbus-white);
font-weight: 600;
border-radius: 0.5rem;
transition: all 0.3s ease;
}
.btn-nimbus-secondary:hover {
background-color: var(--nimbus-navy-light);
border-color: var(--nimbus-navy-light);
color: var(--nimbus-white);
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(26, 35, 50, 0.3);
}
/* Badge styles */
.badge-nimbus-active {
background-color: var(--nimbus-gold);
color: var(--nimbus-navy);
font-weight: 600;
}
.badge-nimbus-inactive {
background-color: var(--nimbus-gray-600);
color: var(--nimbus-white);
}
.badge-nimbus-pending {
background-color: var(--nimbus-amber);
color: var(--nimbus-navy);
font-weight: 600;
}
.badge-nimbus-accepted {
background-color: #28a745;
color: var(--nimbus-white);
font-weight: 600;
}
.badge-nimbus-declined {
background-color: #dc3545;
color: var(--nimbus-white);
font-weight: 600;
}
.badge-nimbus-classification {
background-color: var(--nimbus-gray-600) !important;
color: var(--nimbus-white) !important;
font-weight: 600;
}
/* Dashboard cards - Refined Dark Mode */
.nimbus-dashboard-card {
border: none;
border-radius: 0.75rem;
overflow: hidden;
position: relative;
transition: all 0.2s ease;
background: linear-gradient(135deg, var(--nimbus-navy-light) 0%, var(--nimbus-navy) 100%);
color: var(--nimbus-white);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
border-left: 3px solid transparent;
}
.nimbus-dashboard-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 215, 0, 0.2);
}
.nimbus-dashboard-card .card-header {
background: rgba(255, 215, 0, 0.05);
border-bottom: 1px solid rgba(255, 215, 0, 0.15);
padding: 1rem 1.25rem 0.75rem;
color: var(--nimbus-gray-300);
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}
.nimbus-dashboard-card .card-body {
padding: 1rem 1.25rem 1.25rem;
}
.nimbus-dashboard-card .card-title {
font-size: 2.25rem;
font-weight: 800;
line-height: 1;
margin-bottom: 0.25rem;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.nimbus-dashboard-card .card-body small {
color: var(--nimbus-gray-300);
font-size: 0.8rem;
font-weight: 500;
opacity: 0.8;
}
.nimbus-dashboard-card.card-members {
border-left-color: #4dabf7;
}
.nimbus-dashboard-card.card-members .card-title {
color: #4dabf7;
}
.nimbus-dashboard-card.card-members .card-header i {
color: #4dabf7;
}
.nimbus-dashboard-card.card-schedules {
border-left-color: var(--nimbus-gold);
}
.nimbus-dashboard-card.card-schedules .card-title {
color: var(--nimbus-gold);
}
.nimbus-dashboard-card.card-schedules .card-header i {
color: var(--nimbus-gold);
}
.nimbus-dashboard-card.card-services {
border-left-color: var(--nimbus-amber);
}
.nimbus-dashboard-card.card-services .card-title {
color: var(--nimbus-amber);
}
.nimbus-dashboard-card.card-services .card-header i {
color: var(--nimbus-amber);
}
.nimbus-dashboard-card.card-classifications {
border-left-color: #8b5cf6;
}
.nimbus-dashboard-card.card-classifications .card-title {
color: #8b5cf6;
}
.nimbus-dashboard-card.card-classifications .card-header i {
color: #8b5cf6;
}
/* Table styles - Dark Mode */
.nimbus-table {
border-radius: 0 0 0.75rem 0.75rem;
overflow: hidden;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
background-color: var(--nimbus-navy);
}
.nimbus-table thead th {
background-color: var(--nimbus-navy-light);
color: var(--nimbus-white);
border: none;
font-weight: 600;
padding: 1rem 0.75rem;
}
.nimbus-table tbody tr {
background-color: var(--nimbus-navy);
color: var(--nimbus-white);
border-color: rgba(255, 215, 0, 0.1);
}
.nimbus-table tbody tr:hover {
background-color: rgba(255, 215, 0, 0.15);
}
.nimbus-table tbody td {
border-color: rgba(255, 215, 0, 0.1);
}
/* Page titles - Dark Mode */
.nimbus-page-title {
color: var(--nimbus-white);
font-weight: 700;
margin-bottom: 1.5rem;
position: relative;
}
.nimbus-page-title::after {
content: '';
position: absolute;
bottom: -0.5rem;
left: 0;
width: 3rem;
height: 0.25rem;
background-color: var(--nimbus-gold);
border-radius: 0.125rem;
}
/* Loading spinner */
.nimbus-spinner {
color: var(--nimbus-gold);
}
/* Form controls */
.form-control:focus {
border-color: var(--nimbus-gold);
box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}
.form-select:focus {
border-color: var(--nimbus-gold);
box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}
/* Sidebar navigation */
.nimbus-sidebar, .sidebar {
background: var(--nimbus-navy) !important;
background-image: none !important;
min-height: 100vh;
border-right: 3px solid var(--nimbus-gold);
position: relative;
}
.nimbus-sidebar .nav-item .nav-link,
.sidebar .nav-item .nav-link {
color: var(--nimbus-white) !important;
padding: 0.75rem 1.25rem;
margin: 0.25rem 0.5rem;
border-radius: 0.5rem;
transition: all 0.3s ease;
display: flex !important;
align-items: center !important;
text-decoration: none;
}
.nimbus-sidebar .nav-item .nav-link:hover,
.nimbus-sidebar .nav-item .nav-link.active,
.sidebar .nav-item .nav-link:hover,
.sidebar .nav-item .nav-link.active {
background-color: var(--nimbus-gold) !important;
color: var(--nimbus-navy) !important;
font-weight: 600;
}
/* Fix Bootstrap Icons alignment in sidebar */
.sidebar .nav-item .nav-link i,
.nimbus-sidebar .nav-item .nav-link i {
margin-right: 0.5rem !important;
width: 1.25rem !important;
height: 1.25rem !important;
display: inline-flex !important;
align-items: center !important;
justify-content: center !important;
background: none !important;
background-image: none !important;
}
/* Alert styles */
.alert-nimbus-info {
background-color: rgba(255, 215, 0, 0.1);
border-color: var(--nimbus-gold);
color: var(--nimbus-navy);
}
.alert-nimbus-warning {
background-color: rgba(255, 179, 71, 0.1);
border-color: var(--nimbus-amber);
color: var(--nimbus-navy);
}
/* Quick Actions - Refined Dark Mode */
.nimbus-quick-actions {
background: linear-gradient(135deg, var(--nimbus-navy-light) 0%, var(--nimbus-navy) 100%);
color: var(--nimbus-white);
border-radius: 0.75rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 215, 0, 0.1);
padding: 1.25rem;
}
.nimbus-quick-actions h5 {
color: var(--nimbus-white);
font-weight: 700;
margin-bottom: 1rem;
font-size: 1rem;
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.nimbus-action-btn {
display: block;
width: 100%;
padding: 0.75rem 1rem;
margin-bottom: 0.5rem;
border: none;
border-radius: 0.5rem;
font-weight: 600;
font-size: 0.875rem;
text-decoration: none;
transition: all 0.2s ease;
text-align: left;
position: relative;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.nimbus-action-btn:last-child {
margin-bottom: 0;
}
.nimbus-action-btn:hover {
transform: translateY(-1px);
text-decoration: none;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
.nimbus-action-btn-primary {
background: linear-gradient(135deg, var(--nimbus-gold) 0%, var(--nimbus-gold-dark) 100%);
color: var(--nimbus-navy);
border: none;
}
.nimbus-action-btn-primary:hover {
background: linear-gradient(135deg, var(--nimbus-gold-light) 0%, var(--nimbus-gold) 100%);
color: var(--nimbus-navy);
}
.nimbus-action-btn-success {
background: linear-gradient(135deg, #10b981 0%, #059669 100%);
color: var(--nimbus-white);
}
.nimbus-action-btn-success:hover {
background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
color: var(--nimbus-white);
}
.nimbus-action-btn-warning {
background: linear-gradient(135deg, var(--nimbus-amber) 0%, #f59e0b 100%);
color: var(--nimbus-navy);
}
.nimbus-action-btn-warning:hover {
background: linear-gradient(135deg, #fbbf24 0%, var(--nimbus-amber) 100%);
color: var(--nimbus-navy);
}
.nimbus-action-btn-info {
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
color: var(--nimbus-white);
}
.nimbus-action-btn-info:hover {
background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
color: var(--nimbus-white);
}
/* Responsive adjustments */
@media (max-width: 768px) {
.nimbus-navbar .navbar-brand {
font-size: 1.25rem;
}
.nimbus-brand-icon {
font-size: 1.5rem;
}
.nimbus-dashboard-card .card-title {
font-size: 2rem;
}
}
/* Recent schedules list styling - Refined Dark Mode */
.nimbus-quick-actions .list-group {
border: none;
}
.nimbus-quick-actions .list-group-item {
border: none;
border-bottom: 1px solid rgba(255, 215, 0, 0.1);
padding: 0.75rem 0;
background: transparent;
color: var(--nimbus-white);
transition: all 0.2s ease;
}
.nimbus-quick-actions .list-group-item:last-child {
border-bottom: none;
}
.nimbus-quick-actions .list-group-item:hover {
background: rgba(255, 215, 0, 0.05);
border-radius: 0.375rem;
margin: 0 -0.5rem;
padding: 0.75rem 0.5rem;
}
.nimbus-quick-actions .list-group-item h6 {
color: var(--nimbus-white);
font-weight: 600;
font-size: 0.9rem;
margin-bottom: 0.125rem;
}
.nimbus-quick-actions .list-group-item p {
color: var(--nimbus-gray-300);
font-size: 0.8rem;
margin-bottom: 0.125rem;
opacity: 0.9;
}
.nimbus-quick-actions .list-group-item small {
color: var(--nimbus-gray-300);
font-size: 0.7rem;
opacity: 0.7;
}
/* Dark Mode Bootstrap Overrides */
.card {
background-color: var(--nimbus-navy) !important;
color: var(--nimbus-white) !important;
border: 1px solid rgba(255, 215, 0, 0.2) !important;
}
.card-header {
background-color: var(--nimbus-navy-light) !important;
color: var(--nimbus-white) !important;
border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
}
.table {
color: var(--nimbus-white) !important;
background-color: var(--nimbus-navy) !important;
}
.table th {
color: var(--nimbus-white) !important;
border-color: rgba(255, 215, 0, 0.2) !important;
}
.table td {
color: var(--nimbus-white) !important;
border-color: rgba(255, 215, 0, 0.1) !important;
}
.table-striped > tbody > tr:nth-of-type(odd) > td {
background-color: rgba(255, 215, 0, 0.05) !important;
}
.table-hover > tbody > tr:hover > td {
background-color: rgba(255, 215, 0, 0.15) !important;
}
.form-control {
background-color: var(--nimbus-navy-light) !important;
color: var(--nimbus-white) !important;
border: 1px solid rgba(255, 215, 0, 0.3) !important;
}
.form-control:focus {
background-color: var(--nimbus-navy-light) !important;
color: var(--nimbus-white) !important;
border-color: var(--nimbus-gold) !important;
box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}
.form-select {
background-color: var(--nimbus-navy-light) !important;
color: var(--nimbus-white) !important;
border: 1px solid rgba(255, 215, 0, 0.3) !important;
}
.form-select:focus {
background-color: var(--nimbus-navy-light) !important;
color: var(--nimbus-white) !important;
border-color: var(--nimbus-gold) !important;
box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25) !important;
}
.form-check-input {
background-color: var(--nimbus-navy-light) !important;
border: 1px solid rgba(255, 215, 0, 0.3) !important;
}
.form-check-input:checked {
background-color: var(--nimbus-gold) !important;
border-color: var(--nimbus-gold) !important;
}
.form-label {
color: var(--nimbus-white) !important;
}
.alert-info {
background-color: rgba(255, 215, 0, 0.1) !important;
border-color: var(--nimbus-gold) !important;
color: var(--nimbus-white) !important;
}
.text-muted {
color: var(--nimbus-gray-300) !important;
}
h1, h2, h3, h4, h5, h6 {
color: var(--nimbus-white) !important;
}
.modal-content {
background-color: var(--nimbus-navy) !important;
color: var(--nimbus-white) !important;
border: 1px solid rgba(255, 215, 0, 0.3) !important;
}
.modal-header {
border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
}
.modal-footer {
border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
}
.btn-close {
filter: invert(1) grayscale(100%) brightness(200%) !important;
}