Compare commits

..

No commits in common. "92d673b5ae282df80213f9543c7373c333a91ef1" and "29263ac102a2fcd51a75c5f92859b7049d32e509" have entirely different histories.

4 changed files with 21 additions and 17 deletions

View File

@ -9,6 +9,11 @@
margin-right: 0; margin-right: 0;
width: 100%; width: 100%;
clear: both; clear: both;
/* sticky footer fix start */
position: absolute;
bottom: 0;
height: auto;
/* sticky footer fix end */
margin-top: 3em; margin-top: 3em;
color: $muted-text-color; color: $muted-text-color;
-webkit-animation: $intro-transition; -webkit-animation: $intro-transition;

View File

@ -19,22 +19,6 @@
} }
} }
body {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
min-height: 100vh;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.initial-content,
.search-content {
flex: 1 0 auto;
}
.page { .page {
@include breakpoint($large) { @include breakpoint($large) {
float: right; float: right;

View File

@ -3,6 +3,18 @@
========================================================================== */ ========================================================================== */
$(document).ready(function() { $(document).ready(function() {
// Sticky footer
var bumpIt = function() {
$("body").css("margin-bottom", $(".page__footer").outerHeight(true));
};
bumpIt();
$(window).resize(
jQuery.throttle(250, function() {
bumpIt();
})
);
// FitVids init // FitVids init
$("#main").fitVids(); $("#main").fitVids();

File diff suppressed because one or more lines are too long