Skip to content

Commit

Permalink
Updated footer contacts
Browse files Browse the repository at this point in the history
  • Loading branch information
aui3 committed Nov 12, 2014
1 parent 20d2e1f commit d38189c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
8 changes: 4 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ h3 {
}

.footer-text{
color: #D0BC74;
color: #FFFFFF;

}
h4 {
Expand Down Expand Up @@ -130,7 +130,7 @@ a {
clear:both;
}
.colour{
background-color:#f4e8d2;
background-color:#FFF9EE;
border-radius: 10px;
margin-bottom: 10px;

Expand Down Expand Up @@ -184,12 +184,12 @@ img {
/* Bar chart stuff */
.chart div {
font: 10px sans-serif;
background-color: #4A4A4A;
background-color: #513831;
text-align: right;
padding: 6px;
margin: 5px;
height: 12px;
color: #F5AE23;
color: #D0BC74;
/*display: inline-block;*/
}

Expand Down
8 changes: 7 additions & 1 deletion js/resumeBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,23 @@ bio.displayBio=function(){ //SKILLS

var formattedMobile=HTMLmobile.replace("%data%", bio["contacts"]["mobile"]);
$("#topContacts").append(formattedMobile);
$("#footerContacts").append(formattedMobile);

var formattedEmail=HTMLemail.replace("%data%", bio["contacts"]["email"]);
$("#topContacts").append(formattedEmail);
$("#footerContacts").append(formattedEmail);

var formattedTwitter=HTMLtwitter.replace("%data%", bio["contacts"]["twitter"]);
$("#topContacts").append(formattedTwitter);
$("#footerContacts").append(formattedEmail);

var formattedGitHub=HTMLgithub.replace("%data%", bio["contacts"]["github"]);
$("#topContacts").append(formattedGitHub);
$("#footerContacts").append(formattedEmail);

var formattedLocation=HTMLlocation.replace("%data%", bio["contacts"]["location"]);
$("#topContacts").append(formattedLocation);

$("#footerContacts").append(formattedEmail);


$("#header").append(HTMLWelcomeMsg.replace("%data%", bio["welcomeMessage"]));
Expand Down Expand Up @@ -191,6 +195,8 @@ education.displayEducation=function(){
var formattedEducation=formattedSchoolName+formattedSchoolDegree+formattedDates+formattedLocation+formattedMajor;
//alert(formattedEducation);
$(".education-entry:last").append(formattedEducation);


}

/*
Expand Down

0 comments on commit d38189c

Please sign in to comment.