Sha256: 28ba71e509216620ddd55e41ba0672684927f4d1030f88562cd8bb90857acde6
Contents?: true
Size: 1.14 KB
Versions: 4
Compression:
Stored size: 1.14 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: rgba(255,255,255,1); border-collapse: separate; border-top: 2px solid rgba(230,237,242,1); box-sizing: border-box; display: table; height: 48px; table-layout: fixed; width: 100%; } .navbar > a { color: $primary-color; 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: rgba(35,41,55,1); } .navbar-primary { background: $primary-color; } .navbar-dark > a, .navbar-primary > a { color: rgba(255,255,255,1); } .navbar-light { background: rgba(245,248,250,1); border-color: rgba(225,232,237,1); } /* # Media Queries ================================================== */ @media only screen and (min-width: 768px) { .navbar { display: none; } }
Version data entries
4 entries across 4 versions & 1 rubygems