1
0
Fork 0

Add bullet markers and adjust formatting

main 2024.09.10
Ethan Reece 2024-09-10 15:11:20 -05:00
parent 9a4fafe704
commit 339b953378
Signed by: me
GPG Key ID: 198E9EB433DB1B28
7 changed files with 28 additions and 15 deletions

View File

@ -13,7 +13,7 @@
grid(
columns: 2,
rows: 2,
gutter: 0.75em,
gutter: 0.6em,
align: (
left,
right,

View File

@ -1,5 +1,5 @@
#let section_base_item_heading_role(role: "") = text(
weight: "light",
size: .95em,
size: .9em,
role
)

View File

@ -4,7 +4,7 @@
width: 100%,
text(
weight: "light",
size: .95em,
size: .9em,
skills.join(", ")
)
)

View File

@ -2,7 +2,7 @@
title: "",
subtitle: "",
) = text(
size: .9em,
size: .85em,
weight: "extralight",
subtitle
)

View File

@ -0,0 +1,6 @@
#let section_base_item_highlight(
highlight: "",
) = par(
justify: true,
highlight
)

View File

@ -1,14 +1,17 @@
#let section_base_item_highlights(
highlights: (""),
) = pad(
left: 2em,
for highlight in highlights {
block(
below: 1em,
par(
justify: true,
highlight
)
) = {
import "highlight.typ": section_base_item_highlight
import "marker.typ": section_base_item_marker
list(
marker: section_base_item_marker,
indent: 0.25em,
body-indent: 1.5em,
tight: false,
spacing: 0.85em,
..highlights.map(highlight =>
section_base_item_highlight(highlight: highlight)
)
}
)
)
}

View File

@ -0,0 +1,4 @@
#let section_base_item_marker = text(
weight: "extralight",
sym.dash.en
)