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( #show: doc => cv(
[dnsc], [dnsc],
[Dennis Schoepf], [Dennis Schoepf],
([Software-Entwicklung], [Technisches Projektmanagement], [Konzeption]), ([Softwareentwicklung], [Technisches Projektmanagement], [Konzeption]),
[me\@dnsc.io], [me\@dnsc.io],
[0175 5758108], [0175 5758108],
[Edignaweg 1, 82256 Fürstenfeldbruck], [Edignaweg 1, 82256 Fürstenfeldbruck],

View file

@ -40,30 +40,50 @@
grid( grid(
columns: (1fr, 3fr), columns: (1fr, 3fr),
rows: 130pt,
block( block(
height: 100%,
clip: true, clip: true,
radius: 10pt, radius: 10pt,
image("../assets/profile.jpg"), image("../assets/profile.jpg"),
), ),
block( block(
radius: 10pt,
width: 100%,
height: 100%,
fill: black,
inset: ( inset: (
top: 16pt, top: 16pt,
left: 18pt left: 18pt
), ),
stack( stack(
spacing: 12pt, spacing: 12pt,
text(black, 22pt, [*#name*]), stack(
text( dir: ltr,
black, spacing: 10pt,
14pt, text(red, 22pt, [\$ dennis\@schöpf \~>]),
positions.join(",\n", last: " &\n"), text(white, 22pt, [*cv*]),
style: "italic"
), ),
text( 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, 11pt,
(email, phone, address).join(" // "), (email, phone, address).join(" ++ "),
) )
),
) )
) )
) )