Skip to content

Commit

Permalink
Updated a fix for banner and grammer issues
Browse files Browse the repository at this point in the history
  • Loading branch information
higgisp committed Jul 5, 2015
1 parent a113b4a commit 59910e6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
Binary file removed DaneWorsham.pdf
Binary file not shown.
6 changes: 3 additions & 3 deletions app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ <h2>The Scenic Route</h2>

<section id="skills">
<h3>Skills</h3>
<p>HTML/CSS: SASS/LESS, Bourbon/Neat. CSS/HTML Frameworks: Twitter Bootstrap,Foundation, Material Design and HTML5 Boilerplate.</p>
<p>HTML/CSS: SASS/LESS, Bourbon/Neat. CSS/HTML Frameworks: Twitter Bootstrap, Foundation, Material Design and HTML5 Boilerplate.</p>
<p>Javascript Libraries: Meteor, Angular, jQuery, Underscore.js - interested in learning other MVC frameworks (React, Ember, Knockout etc), exposure to Coffeescript and Typescript.</p>
<p>UX/UI: Have a good eye for design. Familar with responsive Web Design - media queries, fully functional layouts across all screen sizes.</p>
<br>
Expand All @@ -113,15 +113,15 @@ <h3>Skills</h3>

<section id="experience">
<h3>Experience</h3>
<a href="portfolio1/app/Resume.pdf">Interested in my Resume? Click me!</a>
<a href="Resume.pdf">Interested in my Resume? Click me!</a>
<br>
<br>
<div class="shipping">
Shipping - I worked for a large American Muscle Car restoration parts warehouse. It was a full time shipping job that I had for just over a year before deciding to change careers and devote myself to something new.
</div>
<br>
<div class="property">
Property Manager - I managed properties the my family owned and rented out. I was responsible for the landscape maintenance and repairing anything that required it (paint, appliance repair and installation, screen work, etc.).
Property Manager - I managed properties my family owned and rented out. I was responsible for the landscape maintenance and repairing anything that required it (paint, appliance repair and installation, screen work, etc.).
</div>
<br>
<div class="djing">
Expand Down
11 changes: 11 additions & 0 deletions app/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@
}
});

var winHeight = $(window).height();
$('.banner').css({
'min-height': winHeight,
});

$(window).bind("load resize", function() {
$('.banner').css({
'min-height': winHeight,
});
});



// menu button
Expand Down
10 changes: 8 additions & 2 deletions app/styles/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ h1 {
color: $white;
font-size: 50px;
margin: 0;
padding: 235px 0 0;
padding: 25% 0 0;
text-align: center;
text-shadow: 2px 2px #000;
-webkit-transition: all 300ms ease-in-out;
Expand Down Expand Up @@ -121,7 +121,7 @@ ul#nav {
}

.banner {
background: url('../images/bg.jpg') top center;
background: url('../images/bg.jpg') center center no-repeat;
background-size: cover;
background-attachment: fixed;
height: 600px;
Expand Down Expand Up @@ -175,6 +175,9 @@ footer {
}

@media only screen and (max-width : 1024px) {
h1 {
padding: 30% 0 0;
}
header {
padding: 15px;
}
Expand All @@ -197,6 +200,9 @@ footer {
}

@media only screen and (max-width : 768px) {
h1 {
padding: 60% 0 0;
}
ul#nav {
li {
float: left;
Expand Down

0 comments on commit 59910e6

Please sign in to comment.