Sha256: 97616192a6c59d92bcf75ac9ed438ed78d97d3a566ddbfd1b74a75fbe7b5af76
Contents?: true
Size: 917 Bytes
Versions: 17
Compression:
Stored size: 917 Bytes
Contents
// Base Layout Styles // ======================================== // Variables $site-background: $white-light; $navbar-offset: 75px; // Global Styles html, body { background-color: $site-background; overflow-x: hidden; .is-fixed { @include position(fixed); width: 100%; } } // Clears .margin--clear { margin: 0 } .padding--clear { margin: 0 } // Hide/Show Classes .mobile--show { display: block; @include media($tablet-landscape){ display: none; } } .mobile--hide { display: none; @include media($tablet-landscape){ display: block; } } // Alignment .left { float: left; } .right { float: right; } // Page Structure .navbar-offset { @include rem(margin-left, $navbar-offset); } .no-content-container { margin-top: 30%; text-align: center; .no-content-message { @include font-type($primary-sans-serif, normal, 700); @include s-echo; color: $grey-dark; } }
Version data entries
17 entries across 17 versions & 1 rubygems