From: Michael Tremer Date: Sun, 30 Sep 2018 16:27:11 +0000 (+0100) Subject: CSS: Merge the two footer sections together X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=252d95b63e16266910eecef5df010c11c073a37f;p=ipfire.org.git CSS: Merge the two footer sections together No functional changes Signed-off-by: Michael Tremer --- diff --git a/src/scss/style.scss b/src/scss/style.scss index 89aa7e0a..637712fe 100644 --- a/src/scss/style.scss +++ b/src/scss/style.scss @@ -109,6 +109,50 @@ footer { width: 100%; height: $footer-height; + padding: 3rem 0 0 0; + + @include media-breakpoint-down(md) { + padding-top: 31px; + } + + h4 { + margin-bottom: 1.25rem; + color: rgba($gray-400, .6); + font-size: 20px; + line-height: 28px; + } + + ul { + li { + font-size: 14px; + margin-bottom: .75rem; + + a { + color: rgba($gray-400, .6); + text-decoration: none; + &:hover { + color: $gray-400; + text-decoration: underline; + } + } + } + } + + .btn-lg { + margin-bottom: 2.75rem; + } + + .copyright { + background-color: rgba($gray-400, .06); + padding: $spacer 0; + + font-size: $small-font-size; + + a { + color: $text-muted; + } + } + .btn-toolbar .icon { height: 2.25rem; width: 2.25rem; @@ -275,47 +319,6 @@ footer { } } -footer { - padding: 3rem 0 0 0; - @include media-breakpoint-down(md) { - padding-top: 31px; - } - h4 { - margin-bottom: 1.25rem; - color: rgba($gray-400, .6); - font-size: 20px; - line-height: 28px; - } - ul { - li { - font-size: 14px; - margin-bottom: .75rem; - a { - color: rgba($gray-400, .6); - text-decoration: none; - &:hover { - color: $gray-400; - text-decoration: underline; - } - } - } - } - .btn-lg { - margin-bottom: 2.75rem; - } - - .copyright { - background-color: rgba($gray-400, .06); - padding: $spacer 0; - - font-size: $small-font-size; - - a { - color: $text-muted; - } - } -} - // Animation @keyframes scroll { 0%, 100% { transform: translateY(30%); }