From a53633fc989e4e0597584b4a7609430d10bcb6c6 Mon Sep 17 00:00:00 2001 From: Dennis Date: Fri, 13 Sep 2024 11:12:08 +0200 Subject: [PATCH] Finish header styling for cv --- lebenslauf_dennis-schoepf.typ | 2 +- template/cv.typ | 40 ++++++++++++++++++++++++++--------- 2 files changed, 31 insertions(+), 11 deletions(-) diff --git a/lebenslauf_dennis-schoepf.typ b/lebenslauf_dennis-schoepf.typ index 15e28b4..852d94f 100644 --- a/lebenslauf_dennis-schoepf.typ +++ b/lebenslauf_dennis-schoepf.typ @@ -2,7 +2,7 @@ #show: doc => cv( [dnsc], [Dennis Schoepf], - ([Software-Entwicklung], [Technisches Projektmanagement], [Konzeption]), + ([Softwareentwicklung], [Technisches Projektmanagement], [Konzeption]), [me\@dnsc.io], [0175 5758108], [Edignaweg 1, 82256 Fürstenfeldbruck], diff --git a/template/cv.typ b/template/cv.typ index 51d162d..8f02768 100644 --- a/template/cv.typ +++ b/template/cv.typ @@ -40,30 +40,50 @@ grid( columns: (1fr, 3fr), + rows: 130pt, block( + height: 100%, clip: true, radius: 10pt, image("../assets/profile.jpg"), ), block( + radius: 10pt, + width: 100%, + height: 100%, + fill: black, inset: ( top: 16pt, left: 18pt ), stack( spacing: 12pt, - text(black, 22pt, [*#name*]), - text( - black, - 14pt, - positions.join(",\n", last: " &\n"), - style: "italic" + stack( + dir: ltr, + spacing: 10pt, + text(red, 22pt, [\$ dennis\@schöpf \~>]), + text(white, 22pt, [*cv*]), ), text( - black, - 11pt, - (email, phone, address).join(" // "), - ) + white, + 14pt, + positions.join(", ", last: " &\n"), + ), + v(16pt), + stack( + spacing: 6pt, + stack( + dir: ltr, + spacing: 6pt, + text(red, 11pt, [\$ \~>]), + text(white, 11pt, [*contact*]), + ), + text( + white, + 11pt, + (email, phone, address).join(" ++ "), + ) + ), ) ) )