diff options
Diffstat (limited to 'design/sass/_footer.scss')
-rw-r--r-- | design/sass/_footer.scss | 76 |
1 files changed, 36 insertions, 40 deletions
diff --git a/design/sass/_footer.scss b/design/sass/_footer.scss index 1ff56b9..d326d4a 100644 --- a/design/sass/_footer.scss +++ b/design/sass/_footer.scss @@ -1,54 +1,50 @@ footer { - margin-top: 5em; + @include constrain_wide; + margin-top: 6rem; + margin-bottom: 1rem; @include breakpoint(gamma) { max-width: 960; + margin-top: 8rem; + margin-bottom: 3rem; } &:before { - @include breakpoint(beta) { - @include faded_line_after; - margin-bottom: 1.2em; - } - } - .footer-nav { - list-style-type: none !important; - margin-left: 0 !important; - border-top: 1px $body_font_color dotted; - border-bottom: 1px $body_font_color dotted; - padding: .5rem 0; - @include breakpoint(beta) { - border: none; - } + @include faded_line_after; + margin-bottom: 2em; } - li { - display: inline; - margin: 0 .25em; - &:after { - content: "\00b7"; - color: #999999; - padding-left: 0.75em; + .footer-nav-menu { + padding: 0; + text-align: center; + margin-bottom: 1rem; + li { + display: inline; + margin: 0 auto; + &:after { + content: "/"; + color: #999999; + padding-left: 0.75em; + } + a { + color: $secondary-link-color; + text-decoration: none; + } } - a { - color: $secondary-link-color; - text-decoration: none; + li:last-of-type { + margin-right: 0; + &:after { + content: " "; + } } - ul { display:inline;} - } - li:last-of-type { - margin-right: 0; - &:after { - content: " "; + @include breakpoint(beta) { + float: right; + text-align: left; } } p { - @include fontsize(10); text-align: center; - margin-top: 1.5em; - margin-bottom: 1.5em; + a { text-decoration: none; } + @include breakpoint(beta) { + float: left; + text-align: left; + } } } -#license { - @include fancy_sans; - @include fontsize(12); - text-transform: none; - letter-spacing: normal; -} |