1// Content layout styles 2$nav__toplvlWidth: 120px; 3$nav__seclvlWidth: 240px; 4 5// Page header 6.page-header { 7 width: 100%; 8 position: relative; 9 border-bottom: 1px solid $lightbg__grey; 10 margin: .5em 0 2.2em; 11 padding-left: 0; 12} 13 14.content__container { 15 margin-left: $nav__toplvlWidth; 16 padding: 1em .1em; 17 transition: left 1s ease; 18 @include mediaQuery(x-small){ 19 padding: 1rem 2rem; 20 } 21 section.row, 22 .column.row.row, .row.row.columns{ 23 margin-left: 0; 24 } 25} 26 27.content-header { 28 font-weight: 700; 29 margin-bottom: 0; 30 margin-top: 2em; 31} 32 33.content-label, label { 34 color: $darkgrey; 35 text-transform: uppercase; 36 font-weight: 700; 37 font-size: .75em; 38 margin-bottom: 0; 39} 40 41.subhead { 42 width: 100%; 43 border-bottom: 1px solid $medgrey; 44 padding-bottom: .5em; 45} 46