4886a36f2c
Change .cv-main background from var(--paper-white) to var(--paper-bg) so it adapts to theme: - Light theme: white (#ffffff) - Dark theme: cool dark gray (#1a1a1a) Now the entire CV paper is dark in dark theme, not just the page background.
39 lines
944 B
CSS
39 lines
944 B
CSS
/* ============================================================================
|
|
GRID LAYOUT - Page Content Grid
|
|
============================================================================ */
|
|
|
|
/* Professional Title Badges - Spans Both Columns */
|
|
.cv-title-badges-header {
|
|
grid-column: 1 / -1; /* Span all columns */
|
|
background: #303030 !important; /* Elegant dark gray */
|
|
padding: 10px 20px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 0;
|
|
border-bottom: 2px solid #34495e;
|
|
}
|
|
|
|
.title-badge {
|
|
font-size: 0.9em;
|
|
font-weight: normal;
|
|
color: #ccc;
|
|
text-transform: uppercase;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.badge-separator {
|
|
color: #ccc;
|
|
font-weight: normal;
|
|
padding: 0 15px;
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
|
|
/* Main Content Area */
|
|
.cv-main {
|
|
background: var(--paper-bg);
|
|
padding: 3rem 2.5rem 8rem 2.5rem; /* Bottom padding for footer and zoom control clearance */
|
|
}
|