Finish header styling for cv

This commit is contained in:
Dennis Schoepf 2024-09-13 11:12:08 +02:00
parent 2e36a11975
commit a53633fc98
2 changed files with 31 additions and 11 deletions

View file

@ -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],

View file

@ -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,
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(" // "),
(email, phone, address).join(" ++ "),
)
),
)
)
)