diff --git a/main.html b/main.html
index 888fb82903..67b6e3a849 100644
--- a/main.html
+++ b/main.html
@@ -38,12 +38,25 @@
Copyright © 2012. MIT. Some rights reserved.
+
diff --git a/sass/layout/_footer.scss b/sass/layout/_footer.scss
index 5edcb630b8..eb4786dd83 100644
--- a/sass/layout/_footer.scss
+++ b/sass/layout/_footer.scss
@@ -26,22 +26,69 @@ footer {
}
}
- ul {
+ nav {
float: right;
- li {
- display: inline-block;
- margin-right: 20px;
+ ul {
+ float: left;
- a {
- color: #444;
+ li {
+ display: inline-block;
+ margin-right: 20px;
- &:link, &:visited {
+ a {
color: #444;
+
+ &:link, &:visited {
+ color: #444;
+ }
+
+ &:hover, &:focus {
+ color: #000;
+ }
+ }
+ }
+
+ &.social {
+ margin-right: 40px;
+ position: relative;
+ top: -5px;
+
+ @media screen and (max-width: 780px) {
+ float: none;
}
- &:hover, &:focus {
- color: #000;
+ li {
+ float: left;
+ margin-right: lh(.5);
+
+ &:after {
+ content: none;
+ display: none;
+ }
+
+ a {
+ display: block;
+ height: 29px;
+ width: 28px;
+ text-indent: -9999px;
+
+ &:hover {
+ opacity: .8;
+ }
+ }
+
+ &.twitter a {
+ background: url('/static/images/twitter.png') 0 0 no-repeat;
+ }
+
+ &.facebook a {
+ background: url('/static/images/facebook.png') 0 0 no-repeat;
+ }
+
+ &.linkedin a {
+ background: url('/static/images/linkedin.png') 0 0 no-repeat;
+ }
}
}
}