672 lines
16 KiB
CSS
672 lines
16 KiB
CSS
:root {
|
|
--sidebar-width: 260px;
|
|
--primary-color: #4f46e5;
|
|
--primary-hover: #4338ca;
|
|
--surface-color: #ffffff;
|
|
--bg-color: #f8fafc;
|
|
--text-main: #0f172a;
|
|
--text-muted: #64748b;
|
|
--border-color: #e2e8f0;
|
|
--radius-sm: 0.5rem;
|
|
--radius-md: 0.75rem;
|
|
--radius-lg: 1rem;
|
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background-color: var(--bg-color);
|
|
color: var(--text-main);
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
#wrapper {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Sidebar */
|
|
#sidebar-wrapper {
|
|
min-height: 100vh;
|
|
height: 100vh;
|
|
margin-left: calc(-1 * var(--sidebar-width));
|
|
transition: margin .25s ease-out;
|
|
width: var(--sidebar-width);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1000;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
scrollbar-gutter: stable;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
|
|
background: #1e293b;
|
|
}
|
|
|
|
[dir="rtl"] #sidebar-wrapper {
|
|
margin-left: 0;
|
|
margin-right: calc(-1 * var(--sidebar-width));
|
|
left: auto;
|
|
right: 0;
|
|
}
|
|
|
|
#sidebar-wrapper::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
#sidebar-wrapper::-webkit-scrollbar-track {
|
|
background: transparent;
|
|
}
|
|
#sidebar-wrapper::-webkit-scrollbar-thumb {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
border-radius: 10px;
|
|
}
|
|
#sidebar-wrapper::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
}
|
|
|
|
.sidebar-heading {
|
|
padding: 1.5rem 1.25rem;
|
|
font-size: 1.25rem;
|
|
color: #fff;
|
|
background: rgba(0,0,0,0.1);
|
|
border-bottom: 1px solid rgba(255,255,255,0.05);
|
|
}
|
|
|
|
.list-group-item {
|
|
border: none;
|
|
padding: 0.85rem 1.25rem;
|
|
background-color: transparent;
|
|
color: #cbd5e1;
|
|
font-weight: 500;
|
|
transition: all 0.2s;
|
|
margin: 0.2rem 0.75rem;
|
|
border-radius: var(--radius-sm);
|
|
}
|
|
.list-group-item:hover, .list-group-item.active {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
color: #fff;
|
|
}
|
|
.list-group-item i {
|
|
margin-right: 12px;
|
|
width: 20px;
|
|
text-align: center;
|
|
font-size: 1.1em;
|
|
}
|
|
[dir="rtl"] .list-group-item i {
|
|
margin-right: 0;
|
|
margin-left: 12px;
|
|
}
|
|
|
|
#wrapper.toggled #sidebar-wrapper {
|
|
margin-left: 0;
|
|
}
|
|
[dir="rtl"] #wrapper.toggled #sidebar-wrapper {
|
|
margin-right: 0;
|
|
}
|
|
|
|
#page-content-wrapper {
|
|
min-width: 100vw;
|
|
transition: margin .25s ease-out;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
#sidebar-wrapper {
|
|
margin-left: 0;
|
|
}
|
|
[dir="rtl"] #sidebar-wrapper {
|
|
margin-right: 0;
|
|
}
|
|
#page-content-wrapper {
|
|
min-width: 0;
|
|
width: 100%;
|
|
margin-left: var(--sidebar-width);
|
|
}
|
|
[dir="rtl"] #page-content-wrapper {
|
|
margin-left: 0;
|
|
margin-right: var(--sidebar-width);
|
|
}
|
|
#wrapper.toggled #sidebar-wrapper {
|
|
margin-left: calc(-1 * var(--sidebar-width));
|
|
}
|
|
[dir="rtl"] #wrapper.toggled #sidebar-wrapper {
|
|
margin-right: calc(-1 * var(--sidebar-width));
|
|
}
|
|
#wrapper.toggled #page-content-wrapper {
|
|
margin-left: 0;
|
|
}
|
|
[dir="rtl"] #wrapper.toggled #page-content-wrapper {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
/* Navbar */
|
|
.top-navbar {
|
|
background-color: var(--surface-color);
|
|
box-shadow: var(--shadow-sm);
|
|
border-bottom: 1px solid var(--border-color);
|
|
}
|
|
|
|
/* Cards & Surface */
|
|
.surface-card, .card {
|
|
background: var(--surface-color);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-sm);
|
|
margin-bottom: 1.5rem;
|
|
transition: box-shadow 0.2s;
|
|
|
|
}
|
|
.surface-card:hover, .card:hover {
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
.surface-card.p-0, .card.p-0 {
|
|
padding: 0;
|
|
}
|
|
.card-header {
|
|
background-color: transparent;
|
|
border-bottom: 1px solid var(--border-color);
|
|
font-weight: 600;
|
|
padding: 1.25rem 1.5rem;
|
|
}
|
|
.card-body, .surface-card-body {
|
|
|
|
}
|
|
|
|
/* Typography & Headers */
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 600;
|
|
color: var(--text-main);
|
|
}
|
|
h1 { font-size: 1.75rem; }
|
|
h2 { font-size: 1.5rem; }
|
|
|
|
/* Tables (Grids / Lists) */
|
|
.table {
|
|
width: 100%;
|
|
margin-bottom: 0;
|
|
color: var(--text-main);
|
|
vertical-align: middle;
|
|
}
|
|
.table th {
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
background-color: #f8fafc;
|
|
border-bottom: 1px solid var(--border-color);
|
|
text-transform: uppercase;
|
|
font-size: 0.8rem;
|
|
letter-spacing: 0.05em;
|
|
padding: 1rem 1.25rem;
|
|
white-space: nowrap;
|
|
}
|
|
.table td {
|
|
padding: 1rem 1.25rem;
|
|
border-bottom: 1px solid var(--border-color);
|
|
vertical-align: middle;
|
|
}
|
|
.table-hover tbody tr:hover {
|
|
background-color: #f1f5f9;
|
|
}
|
|
.table-responsive {
|
|
border-radius: var(--radius-lg);
|
|
border: 1px solid var(--border-color);
|
|
overflow: hidden;
|
|
background: var(--surface-color);
|
|
box-shadow: var(--shadow-sm);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
.table-responsive .table {
|
|
margin-bottom: 0;
|
|
}
|
|
.table-responsive .table th {
|
|
border-top: none;
|
|
}
|
|
|
|
/* Forms & Inputs */
|
|
.form-control, .form-select {
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-md);
|
|
padding: 0.6rem 1rem;
|
|
font-size: 0.95rem;
|
|
transition: all 0.2s;
|
|
background-color: #f8fafc;
|
|
}
|
|
.form-control:focus, .form-select:focus {
|
|
background-color: #fff;
|
|
border-color: var(--primary-color);
|
|
box-shadow: 0 0 0 0.25rem rgba(79, 70, 229, 0.2);
|
|
}
|
|
.form-label {
|
|
font-weight: 500;
|
|
font-size: 0.9rem;
|
|
color: var(--text-muted);
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
.input-group-text {
|
|
background-color: #f8fafc;
|
|
border-color: var(--border-color);
|
|
color: var(--text-muted);
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn {
|
|
border-radius: var(--radius-md);
|
|
padding: 0.6rem 1.25rem;
|
|
font-weight: 500;
|
|
transition: all 0.2s;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 0.5rem;
|
|
}
|
|
.btn-primary {
|
|
background-color: var(--primary-color);
|
|
border-color: var(--primary-color);
|
|
}
|
|
.btn-primary:hover {
|
|
background-color: var(--primary-hover);
|
|
border-color: var(--primary-hover);
|
|
}
|
|
.btn-sm {
|
|
padding: 0.4rem 0.8rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
/* Modals */
|
|
.modal-content {
|
|
border-radius: var(--radius-lg);
|
|
border: none;
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
.modal-header {
|
|
background-color: var(--surface-color);
|
|
border-bottom: 1px solid var(--border-color);
|
|
padding: 1.25rem 1.5rem;
|
|
position: relative;
|
|
}
|
|
.modal-body {
|
|
|
|
}
|
|
.modal-footer {
|
|
border-top: 1px solid var(--border-color);
|
|
background-color: #f8fafc;
|
|
padding: 1.25rem 1.5rem;
|
|
border-bottom-left-radius: var(--radius-lg);
|
|
border-bottom-right-radius: var(--radius-lg);
|
|
}
|
|
.modal-header .btn-close {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 1.25rem;
|
|
}
|
|
[dir="rtl"] .modal-header .btn-close {
|
|
left: 1.5rem;
|
|
right: auto;
|
|
}
|
|
[dir="ltr"] .modal-header .btn-close {
|
|
right: 1.5rem;
|
|
left: auto;
|
|
}
|
|
|
|
/* Helpers */
|
|
.glassmorphism {
|
|
background: rgba(255, 255, 255, 0.7);
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px);
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
}
|
|
.filter-shell {
|
|
background: var(--surface-color);
|
|
border: 1px solid var(--border-color);
|
|
border-radius: var(--radius-lg);
|
|
|
|
margin-bottom: 1.5rem;
|
|
box-shadow: var(--shadow-sm);
|
|
}
|
|
|
|
body.auth-body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background-color: #f1f5f9;
|
|
}
|
|
|
|
/* Fix form-select arrow position in RTL mode */
|
|
[dir="rtl"] .form-select {
|
|
background-position: left 0.75rem center;
|
|
padding-right: 1rem;
|
|
padding-left: 2.25rem;
|
|
}
|
|
|
|
/* Print specific styles */
|
|
@media print {
|
|
#sidebar-wrapper, .top-navbar, .d-print-none {
|
|
display: none !important;
|
|
}
|
|
#page-content-wrapper {
|
|
margin: 0 !important;
|
|
width: 100% !important;
|
|
min-width: 100% !important;
|
|
padding: 0 !important;
|
|
}
|
|
body {
|
|
font-size: 11pt;
|
|
background-color: #fff;
|
|
}
|
|
.surface-card, .card {
|
|
box-shadow: none !important;
|
|
border: none !important;
|
|
margin-bottom: 0 !important;
|
|
padding: 0 !important;
|
|
}
|
|
.table-responsive {
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
.table th, .table td {
|
|
padding: 0.3rem;
|
|
}
|
|
}
|
|
details summary { list-style: none; cursor: pointer; }
|
|
details summary::-webkit-details-marker { display: none; }
|
|
|
|
|
|
.eid-advanced-panel {
|
|
border-top: 1px dashed var(--border-color);
|
|
margin-top: 0.85rem;
|
|
padding-top: 0.85rem;
|
|
}
|
|
|
|
|
|
.card .table-responsive, .surface-card .table-responsive {
|
|
box-shadow: none; border: none; border-radius: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.surface-card { padding: 1.5rem; }
|
|
|
|
.table-sm th, .table-sm td {
|
|
padding: 0.5rem 0.75rem !important;
|
|
}
|
|
|
|
|
|
/* Dashboard-only bright preview */
|
|
body.theme-preview-sunset {
|
|
background:
|
|
radial-gradient(circle at top left, rgba(255, 122, 0, 0.18), transparent 26%),
|
|
radial-gradient(circle at top right, rgba(0, 209, 178, 0.15), transparent 22%),
|
|
linear-gradient(180deg, #192132 0%, #111827 45%, #0f1724 100%);
|
|
}
|
|
|
|
body.theme-preview-sunset #sidebar-wrapper {
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 122, 0, 0.16), transparent 22%),
|
|
linear-gradient(215deg, #1b2433 0%, #111827 100%);
|
|
border-right: 1px solid rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
body.theme-preview-sunset .sidebar-heading {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
border-bottom: 1px solid rgba(255,255,255,0.08);
|
|
color: #f9fafb;
|
|
}
|
|
|
|
body.theme-preview-sunset #sidebar-wrapper .text-white,
|
|
body.theme-preview-sunset #sidebar-wrapper .text-white-50,
|
|
body.theme-preview-sunset #sidebar-wrapper .sidebar-heading span,
|
|
body.theme-preview-sunset #sidebar-wrapper .fw-semibold {
|
|
color: #f9fafb !important;
|
|
}
|
|
|
|
body.theme-preview-sunset #sidebar-wrapper .list-group-item {
|
|
color: rgba(249, 250, 251, 0.72);
|
|
}
|
|
|
|
body.theme-preview-sunset #sidebar-wrapper .list-group-item:hover,
|
|
body.theme-preview-sunset #sidebar-wrapper .list-group-item.active {
|
|
background: linear-gradient(135deg, rgba(255, 122, 0, 0.18), rgba(0, 209, 178, 0.14));
|
|
color: #ffffff;
|
|
box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
|
|
}
|
|
|
|
body.theme-preview-sunset #sidebar-wrapper .list-group-item:hover i,
|
|
body.theme-preview-sunset #sidebar-wrapper .list-group-item.active i {
|
|
color: #ffd166;
|
|
}
|
|
|
|
body.theme-preview-sunset .top-navbar {
|
|
background: rgba(17, 24, 39, 0.82);
|
|
backdrop-filter: blur(16px);
|
|
-webkit-backdrop-filter: blur(16px);
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
|
|
}
|
|
|
|
body.theme-preview-sunset .top-navbar h4,
|
|
body.theme-preview-sunset .top-navbar .dropdown-toggle,
|
|
body.theme-preview-sunset .top-navbar .btn {
|
|
color: #f9fafb;
|
|
}
|
|
|
|
body.theme-preview-sunset .top-navbar .btn-outline-success,
|
|
body.theme-preview-sunset .top-navbar .btn-outline-primary,
|
|
body.theme-preview-sunset .top-navbar .btn-light {
|
|
border-color: rgba(255, 255, 255, 0.12);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero {
|
|
position: relative;
|
|
background:
|
|
radial-gradient(circle at top right, rgba(255, 122, 0, 0.28), transparent 30%),
|
|
radial-gradient(circle at bottom left, rgba(0, 209, 178, 0.2), transparent 28%),
|
|
linear-gradient(135deg, rgba(27, 36, 51, 0.98) 0%, rgba(17, 24, 39, 0.98) 100%);
|
|
color: #f9fafb;
|
|
border: 1px solid rgba(255, 255, 255, 0.08) !important;
|
|
box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero::before,
|
|
body.theme-preview-sunset .dashboard-hero::after {
|
|
content: '';
|
|
position: absolute;
|
|
border-radius: 999px;
|
|
pointer-events: none;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero::before {
|
|
width: 220px;
|
|
height: 220px;
|
|
right: -50px;
|
|
top: -50px;
|
|
background: radial-gradient(circle, rgba(255, 122, 0, 0.34), rgba(255, 122, 0, 0));
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero::after {
|
|
width: 240px;
|
|
height: 240px;
|
|
left: -70px;
|
|
bottom: -80px;
|
|
background: radial-gradient(circle, rgba(0, 209, 178, 0.22), rgba(0, 209, 178, 0));
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-kicker {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
padding: 0.55rem 0.9rem;
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 209, 102, 0.22);
|
|
color: #ffd166;
|
|
font-size: 0.85rem;
|
|
letter-spacing: 0.04em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero-title {
|
|
color: #f9fafb;
|
|
font-size: clamp(2rem, 4vw, 3.2rem);
|
|
line-height: 1.05;
|
|
max-width: 13ch;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero-copy {
|
|
color: rgba(249, 250, 251, 0.74);
|
|
font-size: 1rem;
|
|
max-width: 64ch;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero-panel {
|
|
padding: 1.25rem;
|
|
border-radius: 1.5rem;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 40px rgba(0, 0, 0, 0.16);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-chip-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-chip {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
padding: 0.75rem 0.9rem;
|
|
border-radius: 1rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.02em;
|
|
color: #111827;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-chip--orange { background: #ffb36b; }
|
|
body.theme-preview-sunset .dashboard-chip--teal { background: #7ce9d7; }
|
|
body.theme-preview-sunset .dashboard-chip--gold { background: #ffd166; }
|
|
body.theme-preview-sunset .dashboard-chip--rose { background: #ff9aae; }
|
|
|
|
body.theme-preview-sunset .dashboard-hero-meta {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
gap: 0.9rem;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero-meta small {
|
|
display: block;
|
|
color: rgba(249, 250, 251, 0.58);
|
|
margin-bottom: 0.25rem;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero-meta strong {
|
|
color: #f9fafb;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .card {
|
|
border: 1px solid rgba(255, 255, 255, 0.08);
|
|
background: rgba(27, 36, 51, 0.94);
|
|
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .card-header,
|
|
body.theme-preview-sunset .dashboard-sunset-sample .card-body,
|
|
body.theme-preview-sunset .dashboard-sunset-sample .table td,
|
|
body.theme-preview-sunset .dashboard-sunset-sample .table th,
|
|
body.theme-preview-sunset .dashboard-sunset-sample .text-muted,
|
|
body.theme-preview-sunset .dashboard-sunset-sample .small {
|
|
color: rgba(249, 250, 251, 0.72) !important;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .card-header {
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .table th {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
color: rgba(249, 250, 251, 0.64) !important;
|
|
border-bottom-color: rgba(255, 255, 255, 0.08);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .table td {
|
|
border-bottom-color: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .table-hover tbody tr:hover {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .dashboard-stat-card {
|
|
overflow: hidden;
|
|
position: relative;
|
|
color: #ffffff;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .dashboard-stat-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.03));
|
|
opacity: 0.92;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .dashboard-stat-card > .card-body {
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .dashboard-stat-card--cyan {
|
|
background: linear-gradient(135deg, #ff7a00 0%, #ff9d42 100%);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .dashboard-stat-card--coral {
|
|
background: linear-gradient(135deg, #00d1b2 0%, #1ee4c8 100%);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .dashboard-stat-card--lime {
|
|
background: linear-gradient(135deg, #ffd166 0%, #ffdf95 100%);
|
|
color: #1b2433;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .dashboard-stat-card--gold {
|
|
background: linear-gradient(135deg, #ff4d6d 0%, #ff7f95 100%);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .display-6,
|
|
body.theme-preview-sunset .dashboard-sunset-sample h5,
|
|
body.theme-preview-sunset .dashboard-sunset-sample h6 {
|
|
color: inherit;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .btn-primary {
|
|
background: linear-gradient(135deg, #ff7a00 0%, #ff9440 100%);
|
|
border: none;
|
|
box-shadow: 0 14px 28px rgba(255, 122, 0, 0.22);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .btn-light {
|
|
background: rgba(255,255,255,0.08);
|
|
border-color: rgba(255,255,255,0.12);
|
|
color: #f9fafb;
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-sunset-sample .badge {
|
|
border-radius: 999px;
|
|
}
|
|
|
|
@media (max-width: 991.98px) {
|
|
body.theme-preview-sunset {
|
|
background: linear-gradient(180deg, #1b2433 0%, #111827 60%, #0f1724 100%);
|
|
}
|
|
|
|
body.theme-preview-sunset .dashboard-hero-title {
|
|
max-width: none;
|
|
}
|
|
}
|