2025-10-27 22:39:29 +00:00
|
|
|
/* Minimal CV Design - A4 Page Simulation */
|
2025-10-20 08:54:21 +01:00
|
|
|
|
|
|
|
|
:root {
|
|
|
|
|
--bg-gray: #525659;
|
|
|
|
|
--paper-white: #ffffff;
|
|
|
|
|
--text-dark: #2d2d2d;
|
|
|
|
|
--text-gray: #555555;
|
|
|
|
|
--accent-blue: #0066cc;
|
|
|
|
|
--border-gray: #dddddd;
|
2025-10-27 22:39:29 +00:00
|
|
|
|
|
|
|
|
/* A4 dimensions */
|
|
|
|
|
--a4-width: 210mm;
|
|
|
|
|
--a4-height: 297mm;
|
|
|
|
|
--page-padding: 20mm;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
* {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
font-family: 'Inter', Arial, sans-serif;
|
|
|
|
|
background-color: var(--bg-gray);
|
|
|
|
|
color: var(--text-dark);
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--accent-blue);
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Action Bar */
|
|
|
|
|
.action-bar {
|
|
|
|
|
background: white;
|
|
|
|
|
border-bottom: 1px solid var(--border-gray);
|
|
|
|
|
position: sticky;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.action-bar-content {
|
2025-10-27 22:39:29 +00:00
|
|
|
max-width: var(--a4-width);
|
2025-10-20 08:54:21 +01:00
|
|
|
margin: 0 auto;
|
|
|
|
|
padding: 1rem 2rem;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lang-btn {
|
|
|
|
|
padding: 0.4rem 1rem;
|
|
|
|
|
border: 1px solid var(--border-gray);
|
|
|
|
|
background: white;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lang-btn:hover {
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.lang-btn.active {
|
|
|
|
|
background: var(--accent-blue);
|
|
|
|
|
color: white;
|
|
|
|
|
border-color: var(--accent-blue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.export-btn {
|
|
|
|
|
padding: 0.4rem 1.2rem;
|
|
|
|
|
background: var(--accent-blue);
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.export-btn:hover {
|
|
|
|
|
background: #0052a3;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Loading Indicator */
|
|
|
|
|
.htmx-indicator {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.htmx-indicator.htmx-request {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loader {
|
|
|
|
|
border: 2px solid #f3f3f3;
|
|
|
|
|
border-top: 2px solid var(--accent-blue);
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
width: 20px;
|
|
|
|
|
height: 20px;
|
|
|
|
|
animation: spin 1s linear infinite;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
0% { transform: rotate(0deg); }
|
|
|
|
|
100% { transform: rotate(360deg); }
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
/* A4 Page Container */
|
2025-10-20 08:54:21 +01:00
|
|
|
.cv-container {
|
2025-10-27 22:39:29 +00:00
|
|
|
width: 100%;
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 2rem 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 2rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
/* A4 Paper - Exact dimensions */
|
2025-10-20 08:54:21 +01:00
|
|
|
.cv-paper {
|
2025-10-27 22:39:29 +00:00
|
|
|
width: var(--a4-width);
|
|
|
|
|
min-height: var(--a4-height);
|
2025-10-20 08:54:21 +01:00
|
|
|
background: var(--paper-white);
|
2025-10-27 22:39:29 +00:00
|
|
|
padding: var(--page-padding);
|
|
|
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Page break helpers */
|
|
|
|
|
.page-break {
|
|
|
|
|
page-break-after: always;
|
|
|
|
|
break-after: page;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.avoid-break {
|
|
|
|
|
page-break-inside: avoid;
|
|
|
|
|
break-inside: avoid;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:32:32 +00:00
|
|
|
/* Header - Photo on right, inline with text */
|
2025-10-20 08:54:21 +01:00
|
|
|
.cv-header {
|
2025-10-27 22:32:32 +00:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: flex-start;
|
|
|
|
|
gap: 2rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
border-bottom: 2px solid var(--text-dark);
|
|
|
|
|
padding-bottom: 1.5rem;
|
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:32:32 +00:00
|
|
|
.cv-header-left {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-header-right {
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-photo {
|
2025-10-27 22:39:29 +00:00
|
|
|
width: 100px;
|
|
|
|
|
height: 100px;
|
2025-10-27 22:32:32 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
border: 3px solid var(--border-gray);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-photo img {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-20 08:54:21 +01:00
|
|
|
.cv-name {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 2rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 700;
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-title {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 1.1rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 400;
|
|
|
|
|
color: var(--text-gray);
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-contact {
|
|
|
|
|
display: grid;
|
2025-10-27 22:39:29 +00:00
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
gap: 0.4rem;
|
|
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
color: var(--text-gray);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Sections */
|
|
|
|
|
.cv-section {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
|
page-break-inside: avoid;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.section-title {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 1.2rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 700;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
padding-bottom: 0.3rem;
|
|
|
|
|
border-bottom: 1px solid var(--border-gray);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.summary-text {
|
2025-10-27 22:39:29 +00:00
|
|
|
line-height: 1.6;
|
2025-10-20 08:54:21 +01:00
|
|
|
text-align: justify;
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.9rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:32:32 +00:00
|
|
|
/* Experience - with separators */
|
2025-10-20 08:54:21 +01:00
|
|
|
.experience-item {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 1.2rem;
|
|
|
|
|
padding-bottom: 1.2rem;
|
2025-10-27 22:32:32 +00:00
|
|
|
border-bottom: 1px solid var(--border-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
page-break-inside: avoid;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.experience-item:last-child {
|
|
|
|
|
border-bottom: none;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.experience-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.6rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
gap: 1rem;
|
2025-10-27 22:32:32 +00:00
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.company-logo {
|
2025-10-27 22:39:29 +00:00
|
|
|
width: 35px;
|
|
|
|
|
height: 35px;
|
2025-10-27 22:32:32 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-right: 0.75rem;
|
2025-10-27 22:32:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.company-logo img {
|
|
|
|
|
max-width: 100%;
|
|
|
|
|
max-height: 100%;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.experience-title {
|
|
|
|
|
flex: 1;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.position {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 1rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 600;
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.2rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.company {
|
|
|
|
|
color: var(--text-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.experience-period {
|
|
|
|
|
color: var(--text-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.8rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
white-space: nowrap;
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
.short-desc {
|
|
|
|
|
color: var(--text-gray);
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
margin-bottom: 0.6rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-20 08:54:21 +01:00
|
|
|
.responsibilities {
|
|
|
|
|
list-style: none;
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.6rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.responsibilities li {
|
2025-10-27 22:39:29 +00:00
|
|
|
padding-left: 1rem;
|
|
|
|
|
margin-bottom: 0.3rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
position: relative;
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.responsibilities li:before {
|
|
|
|
|
content: "•";
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 0;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.technologies {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.8rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
color: var(--text-gray);
|
|
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Education */
|
|
|
|
|
.education-item {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.8rem;
|
|
|
|
|
font-size: 0.9rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.education-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.3rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.degree {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.95rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.education-period {
|
|
|
|
|
color: var(--text-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.8rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.institution {
|
|
|
|
|
color: var(--text-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Skills */
|
|
|
|
|
.skill-block {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.8rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.skill-title {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.95rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 600;
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.3rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.skill-list {
|
|
|
|
|
color: var(--text-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Projects */
|
|
|
|
|
.project-item {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
font-size: 0.9rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.3rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-name {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 1rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-period {
|
|
|
|
|
color: var(--text-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.8rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
font-style: italic;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-role {
|
|
|
|
|
color: var(--text-gray);
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.85rem;
|
|
|
|
|
margin-bottom: 0.3rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.project-description {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.3rem;
|
|
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Certifications & Awards */
|
|
|
|
|
.cert-item,
|
|
|
|
|
.award-item {
|
2025-10-27 22:39:29 +00:00
|
|
|
margin-bottom: 0.4rem;
|
|
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Languages */
|
|
|
|
|
.languages-list {
|
|
|
|
|
display: grid;
|
2025-10-27 22:39:29 +00:00
|
|
|
grid-template-columns: repeat(3, 1fr);
|
|
|
|
|
gap: 0.5rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.language-item {
|
2025-10-27 22:39:29 +00:00
|
|
|
font-size: 0.85rem;
|
2025-10-20 08:54:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Footer */
|
|
|
|
|
footer {
|
|
|
|
|
text-align: center;
|
|
|
|
|
padding: 2rem;
|
|
|
|
|
color: rgba(255,255,255,0.7);
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:32:32 +00:00
|
|
|
/* CV Length Toggle */
|
|
|
|
|
.cv-length-toggle {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.length-btn {
|
|
|
|
|
padding: 0.4rem 1rem;
|
|
|
|
|
border: 1px solid var(--border-gray);
|
|
|
|
|
background: white;
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.length-btn:hover {
|
|
|
|
|
background: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.length-btn.active {
|
|
|
|
|
background: var(--accent-blue);
|
|
|
|
|
color: white;
|
|
|
|
|
border-color: var(--accent-blue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Short CV - Hide detailed content */
|
|
|
|
|
.cv-short .long-only {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-short .short-desc {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Long CV - Hide short descriptions */
|
|
|
|
|
.cv-long .short-desc,
|
|
|
|
|
.short-desc {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-long .long-only {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-long .responsibilities {
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:39:29 +00:00
|
|
|
/* Responsive - tablet/mobile */
|
|
|
|
|
@media (max-width: 900px) {
|
|
|
|
|
.cv-paper {
|
|
|
|
|
width: 100%;
|
|
|
|
|
min-height: auto;
|
|
|
|
|
padding: 15mm;
|
|
|
|
|
box-shadow: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-container {
|
|
|
|
|
padding: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-name {
|
|
|
|
|
font-size: 1.8rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-header {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-photo {
|
|
|
|
|
order: -1;
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-contact {
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.experience-header,
|
|
|
|
|
.project-header,
|
|
|
|
|
.education-header {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 0.25rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.company-logo {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-10-27 22:32:32 +00:00
|
|
|
.action-bar-content {
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cv-length-toggle {
|
|
|
|
|
order: 1;
|
|
|
|
|
width: 100%;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
|
}
|
|
|
|
|
}
|
2025-10-27 22:39:29 +00:00
|
|
|
|
|
|
|
|
.no-print {}
|