2014-04-05 16:26:11 +00:00
|
|
|
.footer {
|
2014-04-18 00:07:07 +00:00
|
|
|
$footer-background: $medium-gray;
|
2014-04-05 16:26:11 +00:00
|
|
|
$footer-color: white;
|
|
|
|
$footer-link-color: transparentize($footer-color, .6);
|
|
|
|
$footer-disclaimer-color: transparentize($footer-color, .6);
|
|
|
|
|
|
|
|
background: $footer-background;
|
|
|
|
|
2014-04-17 07:55:19 +00:00
|
|
|
.content {
|
2014-04-18 00:07:07 +00:00
|
|
|
padding: $container-padding*2 0;
|
2014-04-06 14:14:03 +00:00
|
|
|
}
|
2014-04-05 16:26:11 +00:00
|
|
|
|
|
|
|
.footer-links {
|
|
|
|
@include clearfix;
|
|
|
|
margin-bottom: $base-line-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-bottom: $base-line-height*2;
|
|
|
|
|
|
|
|
@include media($medium-screen) {
|
|
|
|
@include span-columns(3);
|
2014-04-06 14:14:03 +00:00
|
|
|
@include omega(4n);
|
2014-04-05 16:26:11 +00:00
|
|
|
@include clearfix;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
@include media($medium-screen) {
|
2014-04-17 07:55:19 +00:00
|
|
|
text-align: center;
|
2014-04-05 16:26:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li a {
|
|
|
|
color: $footer-link-color;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: transparentize($footer-color, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
li h3 {
|
|
|
|
color: $footer-color;
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 800;
|
|
|
|
margin-bottom: .4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border: 1px solid transparentize($footer-disclaimer-color, .3);
|
|
|
|
margin: 0 auto $base-line-height;
|
|
|
|
width: 12em;
|
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
|
|
|
color: $footer-disclaimer-color;
|
|
|
|
font-size: .9em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
margin: auto;
|
|
|
|
max-width: 35em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|