Sha256: 373e79d6941b3854fc912d823a4b706031a11f0ac2f71e9b37105a45ded92fcc
Contents?: true
Size: 1.18 KB
Versions: 6
Compression:
Stored size: 1.18 KB
Contents
// Table of Contents // ================================================== // Navbar // scss-lint:disable NestingDepth // Navbar // ================================================== .navbar { background: color(white); border-collapse: separate; border-top: 1px solid color(dark-haze); box-sizing: border-box; display: table; height: 50px; line-height: 1; table-layout: fixed; width: 100%; > a { display: table-cell; float: none; font-size: text-size(xxs); font-weight: text-weight(semibold); text-align: center; vertical-align: middle; width: 1%; &:hover, &.active, &:active, &:focus { color: color(primary); } > i { font-size: text-size(l); display: block; margin-bottom: 3px; } } &.primary { > a { &:hover, &.active, &:active, &:focus { background: darkish-color(primary); color: color(white); } } } &.fixed { bottom: 0; left: 0; position: fixed; right: 0; z-index: 1040; } } // Media Queries // ================================================== @media only screen and (min-width: 768px) { .navbar { display: none; } }
Version data entries
6 entries across 6 versions & 1 rubygems