parent
9a4fafe704
commit
339b953378
|
@ -13,7 +13,7 @@
|
|||
grid(
|
||||
columns: 2,
|
||||
rows: 2,
|
||||
gutter: 0.75em,
|
||||
gutter: 0.6em,
|
||||
align: (
|
||||
left,
|
||||
right,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#let section_base_item_heading_role(role: "") = text(
|
||||
weight: "light",
|
||||
size: .95em,
|
||||
size: .9em,
|
||||
role
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
width: 100%,
|
||||
text(
|
||||
weight: "light",
|
||||
size: .95em,
|
||||
size: .9em,
|
||||
skills.join(", ")
|
||||
)
|
||||
)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: "",
|
||||
subtitle: "",
|
||||
) = text(
|
||||
size: .9em,
|
||||
size: .85em,
|
||||
weight: "extralight",
|
||||
subtitle
|
||||
)
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
#let section_base_item_highlight(
|
||||
highlight: "",
|
||||
) = par(
|
||||
justify: true,
|
||||
highlight
|
||||
)
|
|
@ -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)
|
||||
)
|
||||
)
|
||||
}
|
||||
)
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#let section_base_item_marker = text(
|
||||
weight: "extralight",
|
||||
sym.dash.en
|
||||
)
|
Loading…
Reference in New Issue