Skip to content

Commit

Permalink
Update on-site cv display to match theme
Browse files Browse the repository at this point in the history
  • Loading branch information
lamalex committed Jan 14, 2024
1 parent 293f652 commit 03a8115
Show file tree
Hide file tree
Showing 19 changed files with 245 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
--no-pdf-header-footer \
--print-to-pdf-no-header \
--print-to-pdf=static/alexlauni-resume.pdf \
http://localhost:1111/cv
http://localhost:1111/cv/print
kill $ZOLA_PID
- name: Print github.ref (debugging)
Expand Down
1 change: 1 addition & 0 deletions content/cv/print/01currently.md
1 change: 1 addition & 0 deletions content/cv/print/021odu.md
1 change: 1 addition & 0 deletions content/cv/print/022temple.md
1 change: 1 addition & 0 deletions content/cv/print/023uofm.md
1 change: 1 addition & 0 deletions content/cv/print/02education.md
1 change: 1 addition & 0 deletions content/cv/print/031redventures.md
1 change: 1 addition & 0 deletions content/cv/print/035csios.md
1 change: 1 addition & 0 deletions content/cv/print/036fordcredit.md
1 change: 1 addition & 0 deletions content/cv/print/038navy.md
1 change: 1 addition & 0 deletions content/cv/print/039canonical.md
1 change: 1 addition & 0 deletions content/cv/print/03workhistory.md
1 change: 1 addition & 0 deletions content/cv/print/04projects.md
4 changes: 4 additions & 0 deletions content/cv/print/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
+++
title = "Alex Launi"
template = "printcv.html"
+++
22 changes: 14 additions & 8 deletions sass/cv.scss
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ video {
font: inherit;
vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
Expand All @@ -109,22 +110,26 @@ section {
body {
line-height: 0.75;
}

ol,
ul {
list-style: none;
margin-bottom: 0.25em;
}

blockquote,
q {
quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
Expand Down Expand Up @@ -152,7 +157,7 @@ grid {
justify-self: flex-end;
}

.content {
.cv-content {
grid-area: content;
display: flex;
flex-direction: row;
Expand All @@ -170,7 +175,7 @@ grid {
$shadow-color-dark: #e84118;
display: inline-block;

h1 {
h1 {
margin: 0;
font-size: 64px;
position: relative;
Expand Down Expand Up @@ -223,13 +228,13 @@ grid {
display: none;
}

.wrapper {
.cv-wrapper {
display: grid;
grid-gap: 0px;
grid-template-columns: 18% auto 15%;
grid-template-columns: 18% auto;
grid-template-areas:
'....... header header'
'sidebar content timespan';
'....... header'
'sidebar content';
grid-auto-rows: min-content;
}

Expand Down Expand Up @@ -276,7 +281,7 @@ h1 {
line-height: 1em;
}

h1 + p {
h1+p {
/*subtitle*/
font-style: italic;
font-size: 110%;
Expand Down Expand Up @@ -365,6 +370,7 @@ li ul {
}

font-size: x-small;

ul li {
display: inline;
}
Expand All @@ -383,4 +389,4 @@ li ul {
text-decoration: none;
font-size: xx-small;
}
}
}
Loading

0 comments on commit 03a8115

Please sign in to comment.