From 687ae76315759d3187f7044f79d9c85cb42b328e Mon Sep 17 00:00:00 2001 From: Kyle Fiedler Date: Wed, 22 Feb 2012 16:21:00 -0500 Subject: [PATCH] added social icons for marketing pages --HG-- branch : kf-captions --- marketing.html | 13 +++++++++++++ sass/index/_footer.scss | 34 ++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/marketing.html b/marketing.html index f612ade780..e09029c24c 100644 --- a/marketing.html +++ b/marketing.html @@ -98,7 +98,20 @@ function postJSON(url, data, callback) {
  • Honor Code
  • Help
  • + + + % if settings.COURSEWARE_ENABLED: diff --git a/sass/index/_footer.scss b/sass/index/_footer.scss index 5a6736ba42..e66d2ba5da 100644 --- a/sass/index/_footer.scss +++ b/sass/index/_footer.scss @@ -52,6 +52,40 @@ footer { } } + + &.social { + float: right; + margin-right: 60px; + position: relative; + top: -5px; + + li { + float: left; + margin-right: lh(.5); + + a { + display: block; + height: 29px; + width: 28px; + text-indent: -9999px; + } + + &:after { + content: none; + display: none; + } + + &.twitter a { + background: url('/static/images/marketing/twitter.png') 0 0 no-repeat; + } + &.facebook a { + background: url('/static/images/marketing/facebook.png') 0 0 no-repeat; + } + &.linkedin { + background: url('/static/images/marketing/linkedin.png') 0 0 no-repeat; + } + } + } } } }