diff --git a/_sass/_main.scss b/_sass/_main.scss index 5adcca83..bd45c1bf 100644 --- a/_sass/_main.scss +++ b/_sass/_main.scss @@ -581,6 +581,7 @@ body { max-width: 100%; overflow: hidden; #staff-member-carousel { + padding-bottom: 25px; margin-top: 5rem; } .staffer { @@ -610,6 +611,26 @@ body { .staffer[aria-hidden=true]{ display: block !important; } + + .slick-dots { + bottom: 0; + left: 0; + + li { + display: inline-block !important; + width: 15px; + + &:before, + &:after { + content: none; + display: none; + } + + button:before { + font-size: 20px; + } + } + } } // section.press { diff --git a/js/script.js b/js/script.js index 0f2b2814..12ef1217 100644 --- a/js/script.js +++ b/js/script.js @@ -49,7 +49,7 @@ $( document ).ready(function() { headerCollapsed = false; } }); - + // // Show a full-screen width background behind the second level navigation // If anyone has a better idea how to do this cleaner/using only CSS, ideas @@ -74,7 +74,7 @@ $( document ).ready(function() { subMenuBackground.hide(); } }) - + // // Support for mobile hamburger nav // @@ -88,9 +88,9 @@ $( document ).ready(function() { $(this).addClass('collapsed'); $('.mobile-nav').addClass('collapsed'); } - + }); - + // // Handle all section show/hide behavior on join page // @@ -128,14 +128,14 @@ $( document ).ready(function() { var hash = window.location.hash.substr(1); swapAnswer(hash); } - + $('.join-page .faqs a').on('click', function(event) { event.stopPropagation(); // prevent bubbling var hash = this.hash.substr(1); swapAnswer(hash); }); - + // // Catch all outgoing liks that are not to .gov, .mil, facebook.com, github.com, or twitter.com // and display a "you are now leaving..." message @@ -168,8 +168,8 @@ $( document ).ready(function() { $( '#site-alert-overlay' ).hide(); $( '#site-alert' ).hide(); }); - - + + $('.everything-is-awesome').on( "click", function() { // Yes, there were more important things to get done, but everyone needs a mental break sometimes if (awesomeCounter >= 10) { @@ -179,6 +179,6 @@ $( document ).ready(function() { // Not yet awesome awesomeCounter++; }); - - -}); \ No newline at end of file + + +});