diff options
Diffstat (limited to 'app/stylesheets')
| -rw-r--r-- | app/stylesheets/print/education.styl | 1 | ||||
| -rw-r--r-- | app/stylesheets/print/projects.styl | 6 | ||||
| -rw-r--r-- | app/stylesheets/print/skills.styl | 4 | ||||
| -rw-r--r-- | app/stylesheets/print/work.styl | 12 | ||||
| -rw-r--r-- | app/stylesheets/web/work.styl | 14 |
5 files changed, 36 insertions, 1 deletions
diff --git a/app/stylesheets/print/education.styl b/app/stylesheets/print/education.styl index c3d6fd8..ebefd27 100644 --- a/app/stylesheets/print/education.styl +++ b/app/stylesheets/print/education.styl @@ -1,6 +1,7 @@ .education { // avoid page breaks inside the education section page-break-inside: avoid + margin-top: 75px // remove the extra space added for the website margin-bottom: 0 } diff --git a/app/stylesheets/print/projects.styl b/app/stylesheets/print/projects.styl index 8ab284c..be9dd75 100644 --- a/app/stylesheets/print/projects.styl +++ b/app/stylesheets/print/projects.styl @@ -1,3 +1,7 @@ -.project { +.projects { + margin-top: 75px page-break-inside: avoid } + +.project { +} diff --git a/app/stylesheets/print/skills.styl b/app/stylesheets/print/skills.styl index 57c51fa..e5bba67 100644 --- a/app/stylesheets/print/skills.styl +++ b/app/stylesheets/print/skills.styl @@ -1,3 +1,7 @@ +.skills { + margin-top: 75px +} + .skills__content { margin-top: 1.5em } diff --git a/app/stylesheets/print/work.styl b/app/stylesheets/print/work.styl index 4e8a9be..2b57f74 100644 --- a/app/stylesheets/print/work.styl +++ b/app/stylesheets/print/work.styl @@ -1,3 +1,15 @@ +.work { + margin-top: 75px + margin-bottom: 180px +} + .work__experience { page-break-inside: avoid } + +// Style the Company name links in the PDF with thicker underline +.job-position__company { + a:link, a:visited, a:hover, a:active { + text-decoration-thickness: 2px + } +} diff --git a/app/stylesheets/web/work.styl b/app/stylesheets/web/work.styl index caa127d..a989349 100644 --- a/app/stylesheets/web/work.styl +++ b/app/stylesheets/web/work.styl @@ -7,6 +7,20 @@ .work__experience { } +.work__experience { + &:after { + display: flex + content: "" + border-bottom: 1px solid + margin: auto + max-width: 30% + } + &:last-of-type:after { + // remove the extra horizontal line after the last work__experience + display: none + } +} + .job-position { display: flex flex-flow: row wrap |
