Skip to content

Commit

Permalink
minor touch up
Browse files Browse the repository at this point in the history
  • Loading branch information
dwjohnston committed Aug 30, 2017
1 parent 7737295 commit de9865e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "",
"main": "main.js",
"scripts": {
"dev": "webpack-dev-server --watch-content-base --open",
"publish-html": "webpack && copyfiles -f ./src/assets/index.html ./dist ",
"publish-pdf": "node --harmony publish.js "
"dev": "webpack-dev-server --watch-content-base --open", //start dev server
"publish-html": "webpack && copyfiles -f ./src/assets/index.html ./dist ", //publish to html
"publish-pdf": "npm run publish-html && node --harmony publish.js " //publish to pdf
},
"author": "",
"license": "ISC",
Expand Down
4 changes: 2 additions & 2 deletions src/assets/extra.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ <h3>Inland Revenue</h3>
<span class ="experience-job-title">Intelligence Analyst </span>
<span class ="experience-time-period"> January 2013 - August 2016</span>
<p class ="job-summary">
Working for on a big data internal business intelligence project.
Extract Transform Load (ETL) development on big data business intelligence project.
</p>
<h4> Responsiblities</h4>
<ul>
Expand Down Expand Up @@ -188,7 +188,7 @@ <h2> Education </h2>

<div class ="about">
<h6> About this CV </h6>
<p> This is an HTML CV</p>
<p> This is an HTML CV.</p>
<p> I created it using webpack and a node module called <span class ="pre"> html5-to-pdf</span>
</div>

Expand Down
10 changes: 9 additions & 1 deletion src/css/cv.scss
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ section {
margin: 0.3em 0;
}

padding-left: 1em;
padding-left: 0.4em;
display: flex;
flex-flow: row wrap;

Expand All @@ -133,6 +133,14 @@ section {
margin: 0;


&:nth-child(odd) {
flex: 1 0 55%;
}

&:nth-child(even) {
flex: 0 0 40%;
}

}
}

Expand Down

0 comments on commit de9865e

Please sign in to comment.