Add professional CV template project

This commit is contained in:
2026-06-07 15:45:41 +02:00
parent 16244eed5c
commit 38eb5693cd
11 changed files with 1744 additions and 0 deletions

View File

@@ -0,0 +1,147 @@
@page {
size: A4;
margin: 8mm;
}
html,
body {
background: #ffffff !important;
}
body {
color: #111111 !important;
font-size: 10.7pt;
line-height: 1.45;
}
.resume,
.resume--compact,
.resume--two-page {
width: 100% !important;
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
border-radius: 0 !important;
box-shadow: none !important;
background: #ffffff !important;
}
.resume--compact {
font-size: 10.1pt !important;
}
.resume--two-page {
font-size: 9.35pt !important;
}
a {
color: #111111 !important;
text-decoration: none !important;
}
.hero {
gap: 0.8rem !important;
padding-bottom: 0.8rem !important;
border-bottom: 1px solid #bdbdbd !important;
}
.hero__identity h1 {
margin-bottom: 0.45rem !important;
font-size: 22pt !important;
}
.resume--compact .hero__identity h1 {
font-size: 20pt !important;
}
.headline,
.entry__org,
.entry__meta,
.stack-list dd,
.hero__meta li {
color: #111111 !important;
}
.hero__meta,
.panel,
.callout {
background: transparent !important;
border: 1px solid #bdbdbd !important;
}
.section {
padding-top: 0.9rem !important;
}
.resume--compact .section {
padding-top: 0.65rem !important;
}
.resume--two-page .section {
padding-top: 0.42rem !important;
}
.section,
.panel,
.entry,
.callout,
.hero,
.section--grid {
break-inside: avoid !important;
page-break-inside: avoid !important;
}
.section--grid {
gap: 0.65rem !important;
}
.entry {
padding: 0.7rem 0 !important;
}
.resume--compact .panel,
.resume--compact .callout,
.resume--compact .hero__meta {
padding: 0.7rem 0.8rem !important;
}
.resume--two-page .panel,
.resume--two-page .callout,
.resume--two-page .hero__meta {
padding: 0.52rem 0.68rem !important;
}
.resume--compact .entry {
padding: 0.5rem 0 !important;
}
.resume--two-page .entry {
padding: 0.28rem 0 !important;
}
.resume--compact .entry p,
.resume--compact .entry ul,
.resume--compact .plain-list li,
.resume--compact .stack-list dd {
line-height: 1.35 !important;
}
.resume--two-page .entry p,
.resume--two-page .entry ul,
.resume--two-page .plain-list li,
.resume--two-page .stack-list dd {
line-height: 1.2 !important;
}
.resume--two-page .section,
.resume--two-page .section--grid,
.resume--two-page .hero {
break-inside: auto !important;
page-break-inside: auto !important;
}
.tag-list li {
background: transparent !important;
border-color: #999999 !important;
color: #111111 !important;
}

View File

@@ -0,0 +1,352 @@
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-size: 16px;
}
body {
margin: 0;
font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
color: #182131;
background: radial-gradient(circle at top left, rgba(35, 73, 182, 0.06), transparent 24rem), #eef2f7;
line-height: 1.6;
text-rendering: optimizeLegibility;
}
a {
color: #2349b6;
text-decoration: none;
text-underline-offset: 0.16em;
}
a:hover {
text-decoration: underline;
}
p,
li,
dd {
max-width: 75ch;
}
.resume {
width: min(1080px, calc(100% - 2rem));
margin: 2rem auto;
padding: 2.35rem;
background: #ffffff;
border: 1px solid #d7deea;
border-radius: 18px;
box-shadow: 0 22px 54px rgba(16, 24, 40, 0.08);
}
.resume--compact {
width: min(980px, calc(100% - 2rem));
padding: 2rem 2.1rem;
}
.resume--two-page {
width: min(1020px, calc(100% - 2rem));
padding: 2.1rem 2.15rem;
}
.hero {
display: grid;
grid-template-columns: minmax(0, 1.9fr) minmax(280px, 1fr);
gap: 1.75rem;
align-items: start;
padding-bottom: 1.8rem;
border-bottom: 1px solid #c7d1e1;
}
.hero__identity h1 {
margin: 0.35rem 0 0.9rem;
font-size: clamp(2.15rem, 4vw, 3.15rem);
line-height: 1.02;
letter-spacing: -0.02em;
}
.eyebrow {
margin: 0;
color: #2349b6;
font-size: 0.84rem;
font-weight: 700;
line-height: 1.45;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.headline {
margin: 0;
max-width: 58ch;
color: #5f6c83;
font-size: 1.05rem;
line-height: 1.68;
}
.hero__meta {
display: grid;
gap: 0.55rem;
margin: 0;
padding: 1.1rem 1.15rem;
list-style: none;
background: linear-gradient(180deg, #f8fafc, #eef3ff);
border: 1px solid #d5def5;
border-radius: 14px;
}
.hero__meta li {
max-width: none;
color: #182131;
font-size: 0.95rem;
}
.section {
padding-top: 1.7rem;
}
.section h2 {
margin: 0 0 0.95rem;
color: #23304a;
font-size: 0.88rem;
font-weight: 800;
letter-spacing: 0.11em;
text-transform: uppercase;
}
.section--grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.2rem;
}
.panel,
.callout {
padding: 1.15rem 1.2rem;
border: 1px solid #d7deea;
border-radius: 14px;
background: #f8fafc;
}
.panel h2,
.callout h2 {
margin-top: 0;
}
.tag-list,
.plain-list {
margin: 0;
padding-left: 1.1rem;
}
.plain-list li + li {
margin-top: 0.35rem;
}
.tag-list {
display: flex;
flex-wrap: wrap;
gap: 0.58rem;
padding-left: 0;
list-style: none;
}
.tag-list li {
max-width: none;
padding: 0.42rem 0.76rem;
border: 1px solid #cfdaef;
border-radius: 999px;
background: #eef3ff;
color: #243657;
font-size: 0.91rem;
font-weight: 600;
line-height: 1.2;
}
.stack-list {
margin: 0;
}
.stack-list div + div {
margin-top: 0.8rem;
padding-top: 0.8rem;
border-top: 1px solid #e8edf5;
}
.stack-list dt {
color: #243657;
font-weight: 700;
}
.stack-list dd {
margin: 0.14rem 0 0;
color: #5f6c83;
}
.entry {
padding: 1.05rem 0;
border-top: 1px solid #d7deea;
}
.entry:first-of-type {
border-top: 0;
padding-top: 0.1rem;
}
.entry h3 {
margin: 0;
font-size: 1.08rem;
line-height: 1.3;
}
.entry p,
.entry ul {
margin: 0.5rem 0 0;
}
.entry ul {
padding-left: 1.2rem;
}
.entry li + li {
margin-top: 0.45rem;
}
.entry__head {
display: flex;
justify-content: space-between;
gap: 1rem;
align-items: baseline;
}
.entry__org {
margin-top: 0.2rem;
color: #5f6c83;
font-weight: 600;
}
.entry__meta {
color: #5f6c83;
font-size: 0.94rem;
white-space: nowrap;
}
.callout ul {
margin: 0;
padding-left: 1.15rem;
}
.callout li + li {
margin-top: 0.45rem;
}
.footer-meta {
border-top: 1px solid #d7deea;
margin-top: 1rem;
}
.footer-meta p {
margin: 0;
max-width: none;
color: #5f6c83;
font-size: 0.95rem;
}
.resume--compact .hero {
gap: 1.3rem;
padding-bottom: 1.45rem;
}
.resume--compact .section {
padding-top: 1.35rem;
}
.resume--compact .headline {
max-width: 50ch;
font-size: 1rem;
}
.resume--compact .panel,
.resume--compact .callout {
padding: 1rem 1.05rem;
}
.resume--compact .entry {
padding: 0.9rem 0;
}
.resume--compact .entry li + li {
margin-top: 0.32rem;
}
.resume--compact .footer-meta {
margin-top: 0.8rem;
}
.resume--two-page .section {
padding-top: 1.45rem;
}
.resume--two-page .panel,
.resume--two-page .callout {
padding: 1rem 1.05rem;
}
.resume--two-page .entry {
padding: 0.88rem 0;
}
.resume--two-page .entry li + li {
margin-top: 0.34rem;
}
@media (max-width: 900px) {
.resume,
.resume--compact,
.resume--two-page {
width: min(100%, calc(100% - 1rem));
margin: 0.5rem auto;
padding: 1.35rem;
border-radius: 14px;
}
.hero,
.section--grid,
.entry__head {
grid-template-columns: 1fr;
display: grid;
}
.hero {
gap: 1rem;
}
.entry__head {
gap: 0.3rem;
}
.entry__meta {
white-space: normal;
}
}
@media (max-width: 560px) {
html {
font-size: 15px;
}
.hero__identity h1 {
font-size: 2rem;
}
.headline {
font-size: 0.98rem;
}
.hero__meta {
padding: 0.9rem 1rem;
}
}