2016-03-11 15:55:06 -05:00
|
|
|
/* ==========================================================================
|
|
|
|
FOOTER
|
|
|
|
========================================================================== */
|
|
|
|
|
|
|
|
.page__footer {
|
|
|
|
@include clearfix;
|
2017-07-21 16:08:29 -04:00
|
|
|
float: left;
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
width: 100%;
|
|
|
|
clear: both;
|
2016-07-20 09:10:37 -04:00
|
|
|
/* sticky footer fix start */
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
height: auto;
|
|
|
|
/* sticky footer fix end */
|
2016-03-11 16:17:41 -05:00
|
|
|
margin-top: 3em;
|
2017-09-12 12:01:43 -04:00
|
|
|
color: $muted-text-color;
|
2017-08-02 12:27:01 -04:00
|
|
|
-webkit-animation: $intro-transition;
|
|
|
|
animation: $intro-transition;
|
2016-08-08 16:01:37 -04:00
|
|
|
-webkit-animation-delay: 0.45s;
|
|
|
|
animation-delay: 0.45s;
|
2017-09-12 12:01:43 -04:00
|
|
|
background-color: $footer-background-color;
|
2016-03-21 16:36:24 -04:00
|
|
|
|
2016-06-06 21:01:54 -04:00
|
|
|
footer {
|
|
|
|
@include clearfix;
|
2017-07-21 16:08:29 -04:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2016-06-06 21:01:54 -04:00
|
|
|
margin-top: 2em;
|
2017-07-21 16:08:29 -04:00
|
|
|
max-width: 100%;
|
2016-06-06 21:01:54 -04:00
|
|
|
padding: 0 1em 2em;
|
|
|
|
|
|
|
|
@include breakpoint($x-large) {
|
|
|
|
max-width: $x-large;
|
|
|
|
}
|
2016-03-17 22:56:01 -04:00
|
|
|
}
|
2016-03-21 16:36:24 -04:00
|
|
|
|
2016-03-11 15:55:06 -05:00
|
|
|
a {
|
2016-04-05 15:18:05 -04:00
|
|
|
color: inherit;
|
2016-03-11 15:55:06 -05:00
|
|
|
text-decoration: none;
|
2016-03-21 16:36:24 -04:00
|
|
|
|
2016-03-11 15:55:06 -05:00
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2016-06-06 21:16:36 -04:00
|
|
|
|
|
|
|
.fa {
|
2017-09-12 12:01:43 -04:00
|
|
|
color: $muted-text-color;
|
2016-06-06 21:16:36 -04:00
|
|
|
}
|
2016-03-11 15:55:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.page__footer-copyright {
|
2016-04-05 15:18:05 -04:00
|
|
|
font-family: $global-font-family;
|
2016-03-30 22:20:55 -04:00
|
|
|
font-size: $type-size-7;
|
2016-03-11 15:55:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.page__footer-follow {
|
2016-03-21 16:36:24 -04:00
|
|
|
|
2016-03-11 15:55:06 -05:00
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style-type: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: inline-block;
|
2016-03-22 22:59:39 -04:00
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
2016-03-11 16:17:41 -05:00
|
|
|
font-family: $sans-serif-narrow;
|
2016-03-30 16:59:48 -04:00
|
|
|
font-size: $type-size-6;
|
2016-03-11 16:17:41 -05:00
|
|
|
text-transform: uppercase;
|
2016-03-11 15:55:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
li + li:before {
|
|
|
|
content: "";
|
|
|
|
padding-right: 5px;
|
|
|
|
}
|
2016-03-21 16:36:24 -04:00
|
|
|
|
|
|
|
a {
|
2016-03-22 22:59:39 -04:00
|
|
|
padding-right: 10px;
|
2016-03-21 16:36:24 -04:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-03-11 15:55:06 -05:00
|
|
|
}
|