/* Table of Contents ================================================== # Header # Styles # Colors # Media Queries */ /* # Header ================================================== */ .header { background: $color-white; border-bottom: 1px solid; border-color: $color-haze; box-sizing: border-box; color: inherit; height: 60px; padding: 10px 0; min-width: 100%; width: 100%; } .header-brand { color: $color-primary; float: left; font-size: 32px; } .header-search { float: left; margin: -3px 0 0 20px; width: 280px; } .header-search > input { padding-top: 10px; padding-bottom: 9px; } .header-nav, .header-toolchain { float: left; font-size: 14px; font-weight: bold; list-style-type: none; margin: 8px 0 0 20px; padding: 0; } .header-toolchain { font-size: 36px; font-weight: normal; margin-top: 1px; } .header-nav.pull-right, .header-toolchain.pull-right { float: right; margin-left: 0; margin-right: 20px; } .header-nav > li, .header-toolchain > li { float: left; margin: 0 20px 0 0; } .header-nav > li:last-child, .header-toolchain > li:last-child { margin: 0; } .header-nav > li > .btn { margin-top: -9px; padding-top: 12px; padding-bottom: 12px; } .header-nav > li.btn-group { font-size: 14px !important; } .header-nav > li.spacer { color: $color-primary; font-size: 40px; margin-top: -7px; } .header-user { float: right; margin-top: -1px; } .header-user > a:hover, .header-user > a.active, .header-user > a:active, .header-user > a:focus { color: $color-primary; } .header-user > a > img { display: inline-block; height: 40px; width: 40px; } .header-user > a > i { float: right; font-size: 14px; margin: 13px 0 0 3px; } .header-user > ul.dropdown-menu { margin: -5px 10px 0 0; } .header-toggle { float: right; font-size: 24px; margin-top: 4px; } /* # Styles ================================================== */ .header-borderless { border-bottom-color: $color-transparent; } .header-fixed { position: fixed; top: 0; min-width: inherit; width: inherit; z-index: 1040; } .header-shadow { box-shadow: 0 0 3px lighten($color-light-gray, 20%); } /* # Colors ================================================== */ .header-dark { background: $color-black; border-color: $color-dark-black; color: $color-white; } .header-dark.header-shadow { box-shadow: 0 0 3px $color-dark-black; } .header-invisible { background: $color-transparent; border-color: $color-transparent; } .header-invisible.header-shadow { box-shadow: 0; } .header-light { background: lighten($color-light-haze, 2%); border-color: $color-dark-haze; } .header-light.header-shadow { box-shadow: 0 0 3px lighten($color-light-gray, 15%); } /* # Media Queries ================================================== */ @media only screen and (max-width: 767px) { .header { height: 50px; padding: 5px 0; } } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) { .header { border-width: 0.5px; } }