Make it orange #1
@ -1,9 +1,8 @@
|
||||
#import "fontawesome.typ": *
|
||||
#import "lib.typ": template, education_entry, work_entry, project, indent
|
||||
#import "lib.typ": template, education_entry, work_entry, project, indent, SMALL_STRONG, DEFAULT_STRONG
|
||||
|
||||
#set page(margin: 1.75in)
|
||||
#set par(leading: 0.5em, first-line-indent: 1.8em, justify: true)
|
||||
#show raw: set text(font: "New Computer Modern Mono")
|
||||
#show par: set block(spacing: 0.55em)
|
||||
#show heading: set block(above: 2em, below: 1em)
|
||||
|
||||
@ -84,7 +83,7 @@
|
||||
]
|
||||
|
||||
= Projects
|
||||
#set strong(delta: 200)
|
||||
#set strong(delta: SMALL_STRONG)
|
||||
|
||||
#indent[
|
||||
#project("Mandown Comic Converter", "https://github.com/potatoeggy/mandown", "Python, Qt")
|
||||
|
10
lib.typ
10
lib.typ
@ -1,5 +1,8 @@
|
||||
#import "fontawesome.typ": github, fa
|
||||
|
||||
#let DEFAULT_STRONG = 300;
|
||||
#let SMALL_STRONG = 200;
|
||||
|
||||
// Format start and end dates.
|
||||
#let format_date(start_date: none, end_date: none) = {
|
||||
let date = {
|
||||
@ -40,13 +43,14 @@
|
||||
left_content
|
||||
},
|
||||
{
|
||||
set strong(delta: SMALL_STRONG)
|
||||
set align(right)
|
||||
right_content
|
||||
}
|
||||
),
|
||||
{
|
||||
set align(left)
|
||||
set strong(delta: 200)
|
||||
set strong(delta: SMALL_STRONG)
|
||||
details
|
||||
}
|
||||
)
|
||||
@ -65,6 +69,7 @@
|
||||
}
|
||||
cv_entry(
|
||||
left_content: {
|
||||
set strong(delta: DEFAULT_STRONG)
|
||||
text(1.2em)[*#university*] + "\n" + emph[#degree]
|
||||
},
|
||||
right_content: {
|
||||
@ -105,6 +110,7 @@
|
||||
}
|
||||
|
||||
#let project(title, repo_link, tools) = {
|
||||
set strong(delta: DEFAULT_STRONG)
|
||||
link(repo_link)[#text(1.1em)[*#title* #fa(github)]] + [ | _ #tools _]
|
||||
}
|
||||
|
||||
@ -116,7 +122,7 @@
|
||||
set page(margin: (rest: 0.5in, top: 0.4in), paper: "us-letter")
|
||||
set list(indent: 1.25em, marker: [•])
|
||||
set text(font: (BODY_FONT), 10pt)
|
||||
set par(justify: true, leading: 0.75em)
|
||||
set par(justify: true, leading: 0.85em)
|
||||
align(center)[
|
||||
#text(size: 2em, font: TITLE_FONT, fill: color)[*#name*]
|
||||
#block(above: 0em, below: 1em)
|
||||
|
Loading…
Reference in New Issue
Block a user