mirror of
https://github.com/TheLocehiliosan/yadm
synced 2024-10-27 20:34:27 +00:00
80 lines
1.4 KiB
SCSS
80 lines
1.4 KiB
SCSS
|
/* ==========================================================================
|
||
|
FOOTER
|
||
|
========================================================================== */
|
||
|
|
||
|
.page__footer {
|
||
|
@include full();
|
||
|
@include clearfix;
|
||
|
/* sticky footer fix start */
|
||
|
position: absolute;
|
||
|
bottom: 0;
|
||
|
width: 100%;
|
||
|
clear: both;
|
||
|
height: auto;
|
||
|
/* sticky footer fix end */
|
||
|
margin-top: 3em;
|
||
|
color: mix(#fff, $gray, 25%);
|
||
|
-webkit-animation: intro 0.3s both;
|
||
|
animation: intro 0.3s both;
|
||
|
-webkit-animation-delay: 0.45s;
|
||
|
animation-delay: 0.45s;
|
||
|
background-color: $lighter-gray;
|
||
|
border-top: 1px solid $light-gray;
|
||
|
|
||
|
footer {
|
||
|
@include container;
|
||
|
@include clearfix;
|
||
|
margin-top: 2em;
|
||
|
padding: 0 1em 2em;
|
||
|
|
||
|
@include breakpoint($x-large) {
|
||
|
max-width: $x-large;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: inherit;
|
||
|
text-decoration: none;
|
||
|
|
||
|
&:hover {
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.fa {
|
||
|
color: mix(#fff, $gray, 25%);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.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;
|
||
|
}
|
||
|
}
|