Guide_3DS/_sass/minimal-mistakes/_footer.scss

83 lines
1.5 KiB
SCSS
Raw Normal View History

2016-10-30 01:02:14 +02:00
/* ==========================================================================
FOOTER
========================================================================== */
.page__footer {
@include clearfix;
2017-09-28 23:42:38 +02:00
float: left;
margin-left: 0;
margin-right: 0;
width: 100%;
clear: both;
2016-10-30 01:02:14 +02:00
/* sticky footer fix start */
position: absolute;
2017-05-22 22:23:08 +02:00
bottom: 0;
2016-10-30 01:02:14 +02:00
height: auto;
/* sticky footer fix end */
margin-top: 3em;
2017-09-28 23:42:38 +02:00
color: $muted-text-color;
-webkit-animation: $intro-transition;
animation: $intro-transition;
2016-10-30 01:02:14 +02:00
-webkit-animation-delay: 0.45s;
animation-delay: 0.45s;
2017-09-28 23:42:38 +02:00
background-color: $footer-background-color;
2016-10-30 01:02:14 +02:00
footer {
@include clearfix;
2017-09-28 23:42:38 +02:00
margin-left: auto;
margin-right: auto;
2016-10-30 01:02:14 +02:00
margin-top: 2em;
2017-09-28 23:42:38 +02:00
max-width: 100%;
2016-10-30 01:02:14 +02:00
padding: 0 1em 2em;
@include breakpoint($x-large) {
max-width: $x-large;
}
}
a {
2017-09-28 23:42:38 +02:00
color: inherit;
2016-10-30 01:02:14 +02:00
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
.fa {
2017-09-28 23:42:38 +02:00
color: $muted-text-color;
2016-10-30 01:02:14 +02:00
}
}
.page__footer-copyright {
font-family: $global-font-family;
font-size: $type-size-7;
}
.page__footer-follow {
ul {
margin: 0;
padding: 0;
list-style-type: none;
}
li {
display: inline-block;
padding-top: 5px;
padding-bottom: 5px;
font-family: $sans-serif-narrow;
font-size: $type-size-6;
text-transform: uppercase;
}
li + li:before {
content: "";
padding-right: 5px;
}
a {
padding-right: 10px;
font-weight: bold;
}
}