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( grid(
columns: 2, columns: 2,
rows: 2, rows: 2,
gutter: 0.75em, gutter: 0.6em,
align: ( align: (
left, left,
right, right,

View File

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

View File

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

View File

@ -2,7 +2,7 @@
title: "", title: "",
subtitle: "", subtitle: "",
) = text( ) = text(
size: .9em, size: .85em,
weight: "extralight", weight: "extralight",
subtitle 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( #let section_base_item_highlights(
highlights: (""), highlights: (""),
) = pad( ) = {
left: 2em, import "highlight.typ": section_base_item_highlight
for highlight in highlights { import "marker.typ": section_base_item_marker
block(
below: 1em, list(
par( marker: section_base_item_marker,
justify: true, indent: 0.25em,
highlight 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
)