Sha256: e77ce530eefd27dd3885a690f1ac56c253173b5d390b12e504b2e5605d29d633
Contents?: true
Size: 1.98 KB
Versions: 2
Compression:
Stored size: 1.98 KB
Contents
/* Table of Contents ================================================== # Footer # Colors # Media Queries */ /* # Footer ================================================== */ .footer { background: $color-white; border-top: 1px solid $color-haze; box-sizing: border-box; color: $color-black; display: block; height: 30px; margin-top: 40px; padding-top: 3px; width: 100%; } .footer-fixed { bottom: 0; left: 0; position: fixed; right: 0; z-index: 1030; } .footer-nav { list-style: none; margin: 0; padding: 0; } .footer-nav > li { float: left; font-size: 9px; font-weight: 500; margin: 0 5px; text-transform: uppercase; } .footer-nav > li:first-child { margin-left: 0; } .footer-nav > li:last-child { margin-right: 0; } .footer-nav > li, .footer-nav > li > a { color: $color-black; } .footer-nav > li > a:hover, .footer-nav > li > a.active, .footer-nav > li > a:active, .footer-nav > li > a:focus { color: $color-primary; } /* # Colors ================================================== */ .footer-dark { background: $color-black; border-color: $color-dark-black; color: $color-white; } .footer-light { background: $color-light-haze; border-color: $color-dark-haze; } .footer-dark .footer-nav > li, .footer-dark .footer-nav > li > a { color: $color-white; } .footer-dark .footer-nav > li > a:hover, .footer-dark .footer-nav > li > a.active, .footer-dark .footer-nav > li > a:active, .footer-dark .footer-nav > li > a:focus { color: $color-primary; } /* # Media Queries ================================================== */ @media only screen and (max-width: 767px) { .footer { display: none; } } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { .footer { border-width: 0.5px; } }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_frontend-11.1.0 | vendor/assets/stylesheets/_footer.scss |
active_frontend-11.0.0 | vendor/assets/stylesheets/_footer.scss |