Sha256: 92857064a82fdcbe0d7d24cf7eef6bd398eaa15b615db9d29d450498a5009dbb
Contents?: true
Size: 1.18 KB
Versions: 20
Compression:
Stored size: 1.18 KB
Contents
// Table of Contents // ================================================== // Navbar // Media Queries // 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: 54px; 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); } &.primary { &:hover, &.active, &:active, &:focus { background: darkish-color(primary); color: color(white); } } > i { font-size: text-size(l); display: block; margin-bottom: 3px; } } &.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
20 entries across 20 versions & 1 rubygems