blob: bacb093a1a873304cf71c624c6d646548dd224ac [file] [log] [blame]
Michael Davis19475752017-02-23 18:30:23 -06001// Content layout styles
Michael Davis71ec7452017-04-24 16:28:57 -05002$nav__toplvlWidth: 120px;
3$nav__seclvlWidth: 240px;
Michael Davis19475752017-02-23 18:30:23 -06004
Michael Davis272297b2017-04-24 12:11:53 -05005// Page header
6.page-header {
Gunnar Mills84e114a2018-11-14 13:44:41 -06007 width: 100%;
Michael Davis272297b2017-04-24 12:11:53 -05008 position: relative;
9 border-bottom: 1px solid $lightbg__grey;
Michael Davis706b75b2017-08-18 16:40:03 -050010 margin: .5em 0 2.2em;
Michael Davis51946552017-05-01 10:30:38 -050011 padding-left: 0;
Michael Davis272297b2017-04-24 12:11:53 -050012}
13
Michael Davis19475752017-02-23 18:30:23 -060014.content__container {
Michael Davis19475752017-02-23 18:30:23 -060015 margin-left: $nav__toplvlWidth;
Michael Davis0f03ad12017-02-27 16:54:18 -060016 padding: 1em .1em;
Michael Davisc5626182017-03-10 15:48:05 -060017 transition: left 1s ease;
Michael Davis0f03ad12017-02-27 16:54:18 -060018 @include mediaQuery(x-small){
Michael Davis0f03ad12017-02-27 16:54:18 -060019 padding: 1rem 2rem;
Michael Davis19475752017-02-23 18:30:23 -060020 }
Michael Davis706b75b2017-08-18 16:40:03 -050021 section.row,
22 .column.row.row, .row.row.columns{
23 margin-left: 0;
24 }
Michael Davis19475752017-02-23 18:30:23 -060025}
Michael Davis6af13462017-04-04 14:07:02 -050026
Michael Davis272297b2017-04-24 12:11:53 -050027.content-header {
28 font-weight: 700;
29 margin-bottom: 0;
30 margin-top: 2em;
31}
32
Iftekharul Islam8947e702017-07-27 10:28:07 -050033.content-label, label {
34 color: $darkgrey;
Michael Davis272297b2017-04-24 12:11:53 -050035 text-transform: uppercase;
36 font-weight: 700;
37 font-size: .75em;
38 margin-bottom: 0;
39}
Iftekharul Islam8947e702017-07-27 10:28:07 -050040
41.subhead {
Gunnar Mills97195442018-11-26 16:51:57 -060042 width: 100%;
Iftekharul Islam8947e702017-07-27 10:28:07 -050043 border-bottom: 1px solid $medgrey;
44 padding-bottom: .5em;
Gunnar Mills84e114a2018-11-14 13:44:41 -060045}