Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve site footer #280

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions content/assets/css/screen.sass
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ $height: 190px


$box-background: #3D3D3D
$footer-background: #3C0002
$title-background: #292929

.title
Expand Down Expand Up @@ -431,11 +432,19 @@ $title-background: #292929
@include sticky-footer(80px)
width: 100%
+box-shadow
background: $box-background
background: $footer-background
#footer-container
+centered($container-width)
text-align: center
font-size: 0.7em
color: #CFC2B5
a
color: #CFC2B5
#footer-logos
float: right
#hosted-by
float: left
margin-right: 5em
#tested-with
float: right
#copyright
padding-top: 50px
Binary file added content/assets/images/travis-ci.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed content/assets/images/travis-tested-with.png
Binary file not shown.
38 changes: 17 additions & 21 deletions layouts/shared/footer.haml
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
#footer
#footer-container
∞
Copyright
© 2009-2011
%a{:href => "https://github.com/wayneeseguin"} Wayne E. Seguin
© 2011-2014
%a{:href => "https://github.com/mpapis"} Michal Papis
∞
Built with
%a{:href => "http://nanoc.ws"} Nanoc
∞
Hosted by
%a{:href => "https://www.linode.com"} Linode, LLC
∞
Tested By
%a{ :href => "http://www.travis-ci.org/" } Travis CI
%br
%div
%a{ :href => "https://www.linode.com" }
%img{:src => "/images/linode_logo_gray.png", :alt => "Linode, LLC", :height => "50px"}
%a{ :href => "http://www.travis-ci.org/" }
%img{:src => "/images/travis-tested-with.png", :alt => "Travis CI", :height => "50px"}
#footer-logos
#hosted-by
Hosted by:
%br
%a{ :href => "https://www.linode.com" }
%img{:src => "/images/linode_logo_gray.png", :alt => "Linode, LLC", :height => "50px"}
#tested-with
Tested with:
%br
%a{ :href => "http://www.travis-ci.org/" }
%img{:src => "/images/travis-ci.png", :alt => "Travis CI", :height => "50px"}
#copyright
Copyright
© 2009-2011
%a{:href => "https://github.com/wayneeseguin"} Wayne E. Seguin
© 2011-2015
%a{:href => "https://github.com/mpapis"} Michal Papis

%script{:src => "https://www.google.com/jsapi", :type => "text/javascript"}
:javascript
Expand Down