All checks were successful
Build and Deploy Erika CV / build-and-deploy (push) Successful in 39s
611 lines
16 KiB
HTML
611 lines
16 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="da">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Erika Nielsen - CV</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
:root {
|
|
--sidebar-bg: #1e2d4a;
|
|
--sidebar-text: #c8d6ed;
|
|
--accent: #4a8fe8;
|
|
--accent-light: #d6e6ff;
|
|
--white: #ffffff;
|
|
--body-bg: #f0f4fa;
|
|
--text-dark: #1e2d4a;
|
|
--text-muted: #7a8caa;
|
|
--border: #dce6f5;
|
|
--tag-bg: #e8f0fc;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', sans-serif;
|
|
background: var(--body-bg);
|
|
color: var(--text-dark);
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
justify-content: center;
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.cv-wrapper {
|
|
width: 100%;
|
|
max-width: 960px;
|
|
background: var(--white);
|
|
border-radius: 16px;
|
|
overflow: hidden;
|
|
box-shadow: 0 20px 60px rgba(30, 45, 74, 0.18);
|
|
display: flex;
|
|
}
|
|
|
|
/* ---- SIDEBAR ---- */
|
|
.sidebar {
|
|
width: 280px;
|
|
min-width: 280px;
|
|
background: var(--sidebar-bg);
|
|
color: var(--sidebar-text);
|
|
padding: 40px 28px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 32px;
|
|
}
|
|
|
|
.avatar-wrap {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.avatar {
|
|
width: 120px;
|
|
height: 120px;
|
|
border-radius: 50%;
|
|
border: 4px solid var(--accent);
|
|
overflow: hidden;
|
|
background: #2e4270;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.avatar img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.avatar-initials {
|
|
font-size: 36px;
|
|
font-weight: 700;
|
|
color: var(--accent);
|
|
letter-spacing: 2px;
|
|
}
|
|
|
|
.sidebar-name {
|
|
text-align: center;
|
|
}
|
|
|
|
.sidebar-name h1 {
|
|
font-size: 20px;
|
|
font-weight: 700;
|
|
color: var(--white);
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.sidebar-name p {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
color: var(--accent);
|
|
margin-top: 4px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.2px;
|
|
}
|
|
|
|
.sidebar-section h3 {
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 1.5px;
|
|
color: var(--accent);
|
|
border-bottom: 1px solid rgba(74, 143, 232, 0.3);
|
|
padding-bottom: 8px;
|
|
margin-bottom: 14px;
|
|
}
|
|
|
|
.contact-list {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
}
|
|
|
|
.contact-list li {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
font-size: 13px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.contact-icon {
|
|
width: 18px;
|
|
height: 18px;
|
|
flex-shrink: 0;
|
|
margin-top: 1px;
|
|
opacity: 0.75;
|
|
}
|
|
|
|
.profile-text {
|
|
font-size: 13px;
|
|
line-height: 1.7;
|
|
color: var(--sidebar-text);
|
|
}
|
|
|
|
.skill-tags {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.skill-tag {
|
|
background: rgba(74, 143, 232, 0.15);
|
|
border: 1px solid rgba(74, 143, 232, 0.3);
|
|
color: var(--accent-light);
|
|
font-size: 12px;
|
|
font-weight: 500;
|
|
padding: 4px 12px;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
/* ---- MAIN CONTENT ---- */
|
|
.main {
|
|
flex: 1;
|
|
padding: 40px 36px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 36px;
|
|
min-width: 0;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 2px;
|
|
color: var(--accent);
|
|
border-left: 3px solid var(--accent);
|
|
padding-left: 12px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
/* Timeline */
|
|
.timeline {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
}
|
|
|
|
.timeline-item {
|
|
display: flex;
|
|
gap: 20px;
|
|
padding-bottom: 24px;
|
|
position: relative;
|
|
}
|
|
|
|
.timeline-item:last-child {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.timeline-left {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
flex-shrink: 0;
|
|
width: 12px;
|
|
}
|
|
|
|
.timeline-dot {
|
|
width: 12px;
|
|
height: 12px;
|
|
border-radius: 50%;
|
|
background: var(--accent);
|
|
flex-shrink: 0;
|
|
margin-top: 4px;
|
|
box-shadow: 0 0 0 3px rgba(74, 143, 232, 0.2);
|
|
}
|
|
|
|
.timeline-line {
|
|
width: 2px;
|
|
flex: 1;
|
|
background: var(--border);
|
|
margin-top: 6px;
|
|
}
|
|
|
|
.timeline-item:last-child .timeline-line {
|
|
display: none;
|
|
}
|
|
|
|
.timeline-content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
}
|
|
|
|
.timeline-period {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.timeline-title {
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
color: var(--text-dark);
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.timeline-subtitle {
|
|
font-size: 12px;
|
|
color: var(--accent);
|
|
font-weight: 500;
|
|
margin-top: 2px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.timeline-bullets {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.timeline-bullets li {
|
|
font-size: 13px;
|
|
color: #4a5568;
|
|
line-height: 1.5;
|
|
padding-left: 14px;
|
|
position: relative;
|
|
}
|
|
|
|
.timeline-bullets li::before {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
top: 8px;
|
|
width: 5px;
|
|
height: 5px;
|
|
border-radius: 50%;
|
|
background: var(--accent);
|
|
opacity: 0.6;
|
|
}
|
|
|
|
/* Education cards */
|
|
.edu-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 14px;
|
|
}
|
|
|
|
.edu-card {
|
|
background: var(--body-bg);
|
|
border-left: 3px solid var(--accent);
|
|
border-radius: 0 8px 8px 0;
|
|
padding: 14px 16px;
|
|
}
|
|
|
|
.edu-period {
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.8px;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
.edu-title {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: var(--text-dark);
|
|
}
|
|
|
|
.edu-place {
|
|
font-size: 12px;
|
|
color: var(--text-muted);
|
|
margin-top: 2px;
|
|
}
|
|
|
|
/* Language bars */
|
|
.lang-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 16px;
|
|
}
|
|
|
|
.lang-item label {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: var(--text-dark);
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
.lang-item .level {
|
|
font-weight: 400;
|
|
font-size: 11px;
|
|
color: var(--text-muted);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.lang-bar-track {
|
|
height: 5px;
|
|
background: var(--border);
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.lang-bar-fill {
|
|
height: 100%;
|
|
background: var(--accent);
|
|
border-radius: 10px;
|
|
transition: width 1s ease;
|
|
}
|
|
|
|
/* PDF-knap */
|
|
.pdf-btn {
|
|
position: fixed;
|
|
bottom: 32px;
|
|
right: 32px;
|
|
background: var(--accent);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 50px;
|
|
padding: 14px 28px;
|
|
font-size: 1rem;
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
box-shadow: 0 4px 20px rgba(74, 143, 232, 0.5);
|
|
transition: background 0.2s, transform 0.1s;
|
|
z-index: 999;
|
|
}
|
|
.pdf-btn:hover { background: #2f72d0; transform: scale(1.04); }
|
|
|
|
/* Print */
|
|
@media print {
|
|
@page { size: A4; margin: 0; }
|
|
html, body { background: white; padding: 0; margin: 0; display: block; }
|
|
body {
|
|
-webkit-print-color-adjust: exact;
|
|
print-color-adjust: exact;
|
|
}
|
|
.cv-wrapper {
|
|
box-shadow: none;
|
|
border-radius: 0;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
transform-origin: top left;
|
|
transform: scale(0.78);
|
|
height: 128vh;
|
|
overflow: hidden;
|
|
}
|
|
.sidebar { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
|
|
.pdf-btn { display: none; }
|
|
}
|
|
|
|
/* Mobile */
|
|
@media (max-width: 700px) {
|
|
.cv-wrapper { flex-direction: column; }
|
|
.sidebar { width: 100%; min-width: 0; }
|
|
.lang-grid { grid-template-columns: 1fr; }
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="cv-wrapper">
|
|
|
|
<!-- SIDEBAR -->
|
|
<aside class="sidebar">
|
|
<div class="avatar-wrap">
|
|
<div class="avatar">
|
|
<img src="/static/photo.jpg" alt="Erika Nielsen"
|
|
onerror="this.style.display='none'; this.nextElementSibling.style.display='flex'">
|
|
<div class="avatar-initials" style="display:none">ES</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="sidebar-name">
|
|
<h1>Erika Nielsen</h1>
|
|
<p>Serviceminded & engageret</p>
|
|
</div>
|
|
|
|
<div class="sidebar-section">
|
|
<h3>Kontakt</h3>
|
|
<ul class="contact-list">
|
|
<li>
|
|
<svg class="contact-icon" fill="none" stroke="currentColor" stroke-width="1.8" viewBox="0 0 24 24">
|
|
<path d="M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z"/>
|
|
<path d="M15 11a3 3 0 11-6 0 3 3 0 016 0z"/>
|
|
</svg>
|
|
<span>Skovstræde 3, Vordingborg</span>
|
|
</li>
|
|
<li>
|
|
<svg class="contact-icon" fill="none" stroke="currentColor" stroke-width="1.8" viewBox="0 0 24 24">
|
|
<path d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498A1 1 0 0121 15.72V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/>
|
|
</svg>
|
|
<span>+45 30 84 97 73</span>
|
|
</li>
|
|
<li>
|
|
<svg class="contact-icon" fill="none" stroke="currentColor" stroke-width="1.8" viewBox="0 0 24 24">
|
|
<path d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
|
|
</svg>
|
|
<span>erikastensvedny@gmail.com</span>
|
|
</li>
|
|
<li>
|
|
<svg class="contact-icon" fill="none" stroke="currentColor" stroke-width="1.8" viewBox="0 0 24 24">
|
|
<rect x="3" y="4" width="18" height="18" rx="2" ry="2"/>
|
|
<line x1="16" y1="2" x2="16" y2="6"/><line x1="8" y1="2" x2="8" y2="6"/>
|
|
<line x1="3" y1="10" x2="21" y2="10"/>
|
|
</svg>
|
|
<span>11 januar 2008</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="sidebar-section">
|
|
<h3>Faglig Profil</h3>
|
|
<p class="profile-text">
|
|
Jeg er kommunikativ, nem at omgås og kan tilpasse mig enhver situation.
|
|
Jeg søger et job, hvor jeg kan bidrage med mit engagement og mit store
|
|
arbejdsdrive. I mine tidligere job har jeg altid udmærket mig ved at
|
|
være produktiv og lære hurtigt.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="sidebar-section">
|
|
<h3>Kompetencer</h3>
|
|
<div class="skill-tags">
|
|
<span class="skill-tag">Problemlosning</span>
|
|
<span class="skill-tag">Empatisk</span>
|
|
<span class="skill-tag">Fejlfinding</span>
|
|
<span class="skill-tag">Serviceminded</span>
|
|
<span class="skill-tag">Initiativrig</span>
|
|
</div>
|
|
</div>
|
|
</aside>
|
|
|
|
<!-- MAIN -->
|
|
<main class="main">
|
|
|
|
<!-- ERHVERVSERFARING -->
|
|
<section>
|
|
<div class="section-title">Erhvervserfaring</div>
|
|
<div class="timeline">
|
|
|
|
<div class="timeline-item">
|
|
<div class="timeline-left"><div class="timeline-dot"></div><div class="timeline-line"></div></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-period">Marts 2026 - April 2026</div>
|
|
<div class="timeline-title">Tjener - Restaurant Kujirasushi</div>
|
|
<div class="timeline-subtitle">Vordingborg</div>
|
|
<ul class="timeline-bullets">
|
|
<li>Koordinerede med køkkenpersonalet for at sikre hurtig og præcis levering af retter</li>
|
|
<li>Assisterede i daglig opsætning og oprydning af restaurantens borde og serviceområder</li>
|
|
<li>Serverede mad og drikkevarer til gæster, hvilket sikrede en høj grad af kundetilfredshed</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-item">
|
|
<div class="timeline-left"><div class="timeline-dot"></div><div class="timeline-line"></div></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-period">April 2026 - April 2026</div>
|
|
<div class="timeline-title">Praktikant - Egmont</div>
|
|
<div class="timeline-subtitle">København</div>
|
|
<ul class="timeline-bullets">
|
|
<li>Udvikling af hjemmeside</li>
|
|
<li>Test af AI-løsninger</li>
|
|
<li>Deltagelse i udviklingsmøder</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-item">
|
|
<div class="timeline-left"><div class="timeline-dot"></div><div class="timeline-line"></div></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-period">Januar 2025 - Februar 2026</div>
|
|
<div class="timeline-title">Privat Rengøring</div>
|
|
<div class="timeline-subtitle">Vordingborg / Stensved / Kalvehave</div>
|
|
<ul class="timeline-bullets">
|
|
<li>Rengøring i private hjem</li>
|
|
<li>Effektiv udførelse af tildelte opgaver</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-item">
|
|
<div class="timeline-left"><div class="timeline-dot"></div><div class="timeline-line"></div></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-period">Januar 2025 - Maj 2025</div>
|
|
<div class="timeline-title">Rengøringshjælp - Møllers Grill</div>
|
|
<div class="timeline-subtitle">Vordingborg</div>
|
|
<ul class="timeline-bullets">
|
|
<li>Planlagde og udførte rengøringsopgaver i henhold til en detaljeret tidsplan</li>
|
|
<li>Effektiv udførelse af tildelte opgaver</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="timeline-item">
|
|
<div class="timeline-left"><div class="timeline-dot"></div><div class="timeline-line"></div></div>
|
|
<div class="timeline-content">
|
|
<div class="timeline-period">Oktober 2024 - Oktober 2024</div>
|
|
<div class="timeline-title">Praktikant - Vordingborg Madservice</div>
|
|
<div class="timeline-subtitle">Nyråd</div>
|
|
<ul class="timeline-bullets">
|
|
<li>Lavede mad til ældre borgere</li>
|
|
<li>Rengøring af køkken</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
|
|
<!-- UDDANNELSE -->
|
|
<section>
|
|
<div class="section-title">Uddannelse</div>
|
|
<div class="edu-grid">
|
|
<div class="edu-card">
|
|
<div class="edu-period">August 2025 - Juni 2027</div>
|
|
<div class="edu-title">Hf-eksamen</div>
|
|
<div class="edu-place">Hf, Vordingborg</div>
|
|
</div>
|
|
<div class="edu-card">
|
|
<div class="edu-period">August 2023 - Juni 2024</div>
|
|
<div class="edu-title">10. klasse-eksamen</div>
|
|
<div class="edu-place">10. klasse, Næsved</div>
|
|
</div>
|
|
<div class="edu-card">
|
|
<div class="edu-period">August 2023 - Juni 2024</div>
|
|
<div class="edu-title">9. klasse-eksamen</div>
|
|
<div class="edu-place">9. klasse Efterskole, Glamsbjerg</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- SPROG -->
|
|
<section>
|
|
<div class="section-title">Sprog</div>
|
|
<div class="lang-grid">
|
|
<div class="lang-item">
|
|
<label>Dansk <span class="level">Modersmål</span></label>
|
|
<div class="lang-bar-track"><div class="lang-bar-fill" style="width:100%"></div></div>
|
|
</div>
|
|
<div class="lang-item">
|
|
<label>Engelsk <span class="level">Højere mellemniveau</span></label>
|
|
<div class="lang-bar-track"><div class="lang-bar-fill" style="width:68%"></div></div>
|
|
</div>
|
|
<div class="lang-item">
|
|
<label>Tysk <span class="level">Basisniveau</span></label>
|
|
<div class="lang-bar-track"><div class="lang-bar-fill" style="width:30%"></div></div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
</div>
|
|
|
|
<button class="pdf-btn" onclick="window.print()">⬇ Download CV som PDF</button>
|
|
|
|
</body>
|
|
</html>
|