diff --git a/app/assets/stylesheets/participacion.scss b/app/assets/stylesheets/participacion.scss index 9efdb099d..f5edcb5fd 100644 --- a/app/assets/stylesheets/participacion.scss +++ b/app/assets/stylesheets/participacion.scss @@ -262,7 +262,8 @@ h6 { } .footer { - background: $brand; + background: #DEE0E2; + border-top: rem-calc(10) solid $brand; } // 04. Header @@ -542,6 +543,7 @@ header { } .top-links { + background: #0B0C0C; color: white; font-size: rem-calc(14); @@ -609,61 +611,55 @@ header { // - - - - - - - - - - - - - - - - - - - - - - - - - footer { - color: white; - padding: rem-calc(24) 0 rem-calc(48) 0; + color: #171819; + padding: rem-calc(48) 0; .logo { @include logo; a { + color: #454A4C; line-height: rem-calc(36); padding-left: 0; + text-decoration: none; } } - h4 { - color: white; - font-weight: normal; + p { + font-size: rem-calc(14); } - a { - color: white; + a, a:active, a:focus { + color: #454A4C; + text-decoration: underline; &:hover { - color: white; - opacity: .5; - transition: opacity 275ms; - } - - &:active, &:focus { - color: white; - } - } - - .footer-description { - a { - text-decoration: underline; - - &:hover { - color: white; - opacity: .5; - transition: opacity 275ms; - } - - &:active, &:focus { - color: white; - opacity: 1; - } + color: #171819; } } .footer-sections { padding-left: 0; } + + h4 { + + a { + border-bottom: 1px solid #BFC1C3; + display: block; + margin-bottom: rem-calc(6); + padding-bottom: rem-calc(6); + text-decoration: none; + } + } } .subfooter { - padding-top: $line-height; + border-top: 1px solid #BFC1C3; + opacity: .75; + margin-top: rem-calc(24); + padding-top: rem-calc(12); + } // 06. Tags diff --git a/app/views/layouts/_footer.html.erb b/app/views/layouts/_footer.html.erb index f71c6b8ee..9cb5bd1a5 100644 --- a/app/views/layouts/_footer.html.erb +++ b/app/views/layouts/_footer.html.erb @@ -2,23 +2,22 @@
-
+
-

<%= t("layouts.footer.description", - more_info: link_to(t("layouts.footer.more_info"), t("layouts.footer.more_info_url")), open_source: link_to(t("layouts.footer.open_source"), t("layouts.footer.open_source_url"), target: "blank"), - github: link_to(t("layouts.footer.github"), t("layouts.footer.github_url"), target: "blank")).html_safe + consul: link_to(t("layouts.footer.consul"), t("layouts.footer.consul_url"), target: "blank")).html_safe %> <%= t("layouts.footer.contact_us") %> <%= mail_to "web.gobiernoabierto@madrid.es" %>

-