Skip to content

Commit

Permalink
#17 - Updating the footer to match the wire frame.
Browse files Browse the repository at this point in the history
  • Loading branch information
admwx7 committed Jan 10, 2014
1 parent 587203e commit 50907c0
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 27 deletions.
58 changes: 48 additions & 10 deletions HTML/CSS/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
body {
background-color: white;
font-family: Helvetica, sans-serif;
padding: 0;
padding: 0 0 40px 0;
margin: 0;
}

Expand All @@ -24,45 +24,83 @@ a {
/* line 1, ../../SASS/_navigation.scss */
footer {
color: black;
font-size: 14px;
padding: 2px 0;
margin: 0;
position: fixed;
bottom: 0;
background-color: white;
left: 0;
right: 0;
border-top: 1px solid black;
}
/* line 5, ../../SASS/_navigation.scss */
/* line 12, ../../SASS/_navigation.scss */
footer a:hover {
color: gray;
}

/* line 10, ../../SASS/_navigation.scss */
/* line 17, ../../SASS/_navigation.scss */
nav {
background-color: white;
}

/* line 14, ../../SASS/_navigation.scss */
/* line 21, ../../SASS/_navigation.scss */
.border-right {
border-right-style: solid;
border-right-color: black;
border-right-width: 1px;
}

/* line 27, ../../SASS/_navigation.scss */
#Team:hover {
color: black;
}

/* line 15, ../../SASS/_navigation.scss */
/* line 28, ../../SASS/_navigation.scss */
#Donate:hover {
color: black;
}

/* line 16, ../../SASS/_navigation.scss */
/* line 29, ../../SASS/_navigation.scss */
#Membership:hover {
color: black;
}

/* line 17, ../../SASS/_navigation.scss */
/* line 30, ../../SASS/_navigation.scss */
#GitHub:hover {
color: black;
}

/* line 18, ../../SASS/_navigation.scss */
/* line 31, ../../SASS/_navigation.scss */
#Contributors:hover {
color: black;
}

/* line 20, ../../SASS/_navigation.scss */
/* line 33, ../../SASS/_navigation.scss */
#copyright {
font-size: 12px;
padding-top: 5px;
}

/* line 38, ../../SASS/_navigation.scss */
.footer-icons {
padding: 0px;
margin-top: 0;
margin-bottom: 0;
margin-left: auto;
margin-right: auto;
}
/* line 45, ../../SASS/_navigation.scss */
.footer-icons a {
float: right;
margin-left: 2px;
}

/* line 51, ../../SASS/_navigation.scss */
.footer-links {
padding-top: 5px;
}
/* line 54, ../../SASS/_navigation.scss */
.footer-links div {
padding: 0 !important;
text-align: center;
}
56 changes: 41 additions & 15 deletions HTML/INC/footer.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,45 @@
<footer class="row">
<div class="row text-center">
<a href="https://github.com/openfaux">
<img src="/IMG/github.png"/>
</a>
<a href="https://facebook.com/openfaux">
<img src="/IMG/facebook.png"/>
</a>
<a href="https://twitter.com/openfaux">
<img src="/IMG/twitter.png"/>
</a>
<a href="https://youtube.com/openfaux">
<img src="/IMG/youtube.png"/>
</a>
<div class="large-3 columns">
<!--Filler space-->
&nbsp;
</div>
<div id="copyright" class="row text-center">
&copy; 2013 - OpenFaux Foundation, Inc.
<div class="large-6 columns footer-links">
<!--We don't actually have any links to put here yet...-->
<!--<div class="large-3 columns border-right">-->
<!--<a>-->
<!--Link me!-->
<!--</a>-->
<!--</div>-->
<!--<div class="large-3 columns border-right">-->
<!--<a>-->
<!--Link me!-->
<!--</a>-->
<!--</div>-->
<!--<div class="large-3 columns border-right">-->
<!--<a>-->
<!--Link me!-->
<!--</a>-->
<!--</div>-->
<!--<div class="large-3 columns">-->
<!--<a>-->
<!--Link me!-->
<!--</a>-->
<!--</div>-->
</div>
<div class="large-3 columns">
<div class="footer-icons">
<a href="https://github.com/openfaux">
<img src="/IMG/github.png"/>
</a>
<a href="https://facebook.com/openfaux">
<img src="/IMG/facebook.png"/>
</a>
<a href="https://twitter.com/openfaux">
<img src="/IMG/twitter.png"/>
</a>
<a href="https://youtube.com/openfaux">
<img src="/IMG/youtube.png"/>
</a>
</div>
</div>
</footer>
37 changes: 36 additions & 1 deletion SASS/_navigation.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
footer {
color: $black;
font-size:14px;
padding: 2px 0;
margin: 0;
position: fixed;
bottom: 0;
background-color: $backgroundColor;
left: 0;
right: 0;
border-top: 1px solid $black;

a:hover {
color: $gray;
Expand All @@ -11,6 +18,12 @@ nav {
background-color: $backgroundColor;
}

.border-right {
border-right-style: solid;
border-right-color: $black;
border-right-width: 1px;
}

#Team:hover { color: $black; }
#Donate:hover { color: $black; }
#Membership:hover { color: $black; }
Expand All @@ -20,4 +33,26 @@ nav {
#copyright {
font-size: 12px;
padding-top: 5px;
}

.footer-icons {
padding: 0px;
margin-top: 0;
margin-bottom: 0;
margin-left: auto;
margin-right: auto;

a {
float: right;
margin-left: 2px;
}
}

.footer-links {
padding-top: 5px;

div {
padding: 0 !important;
text-align: center;
}
}
2 changes: 1 addition & 1 deletion SASS/_page.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
body {
background-color: $backgroundColor;
font-family: Helvetica, sans-serif;
padding: 0;
padding: 0 0 40px 0;
margin: 0;
}

Expand Down

0 comments on commit 50907c0

Please sign in to comment.