Sha256: 37a3b1821c3f92fd91c60961dc81e34d968c2364a2ecf0e8231dce1249f40d86
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
/* Table of Contents ================================================== # Navbar # Colors # Media Queries */ /* # Navbar ================================================== */ .navbar-fixed { bottom: 0; left: 0; position: fixed; right: 0; z-index: 1030; } .navbar { background: $color-white; border-collapse: separate; border-top: 2px solid $color-haze; box-sizing: border-box; display: table; height: 48px; table-layout: fixed; width: 100%; } .navbar > a { color: $color-primary; display: table-cell; float: none; font-size: 27px; padding: 10px 0; text-align: center; width: 1%; } /* # Colors ================================================== */ .navbar-dark, .navbar-primary { border-color: rgba(0,0,0,0.2); } .navbar-dark { background: $color-black; } .navbar-primary { background: $color-primary; } .navbar-dark > a, .navbar-primary > a { color: $color-white; } .navbar-light { background: $color-haze-light; border-color: $color-haze-dark; } /* # Media Queries ================================================== */ @media only screen and (min-width: 768px) { .navbar { display: none; } }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
active_frontend-7.0.2 | vendor/assets/stylesheets/_navbar.scss |
active_frontend-7.0.1 | vendor/assets/stylesheets/_navbar.scss |
active_frontend-7.0.0 | vendor/assets/stylesheets/_navbar.scss |