blob: e50f826e8d6a51b1130dc62b118c568d9955eab4 [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 .h4 {
Michael Davis7f89fad2017-07-31 18:36:45 -050013 padding: .1em 0 0 0;
Gunnar Mills84e114a2018-11-14 13:44:41 -060014 margin: 0 0 1em 0;
Michael Davis272297b2017-04-24 12:11:53 -050015 font-weight: bold;
16 }
17}
18
Michael Davis19475752017-02-23 18:30:23 -060019.content__container {
Michael Davis19475752017-02-23 18:30:23 -060020 margin-left: $nav__toplvlWidth;
Michael Davis0f03ad12017-02-27 16:54:18 -060021 padding: 1em .1em;
Michael Davisc5626182017-03-10 15:48:05 -060022 transition: left 1s ease;
Michael Davis0f03ad12017-02-27 16:54:18 -060023 @include mediaQuery(x-small){
Michael Davis0f03ad12017-02-27 16:54:18 -060024 padding: 1rem 2rem;
Michael Davis19475752017-02-23 18:30:23 -060025 }
Michael Davis706b75b2017-08-18 16:40:03 -050026 section.row,
27 .column.row.row, .row.row.columns{
28 margin-left: 0;
29 }
Michael Davis19475752017-02-23 18:30:23 -060030}
Michael Davis6af13462017-04-04 14:07:02 -050031
Michael Davis272297b2017-04-24 12:11:53 -050032.content-header {
33 font-weight: 700;
34 margin-bottom: 0;
35 margin-top: 2em;
36}
37
Iftekharul Islam8947e702017-07-27 10:28:07 -050038.content-label, label {
39 color: $darkgrey;
Michael Davis272297b2017-04-24 12:11:53 -050040 text-transform: uppercase;
41 font-weight: 700;
42 font-size: .75em;
43 margin-bottom: 0;
44}
Iftekharul Islam8947e702017-07-27 10:28:07 -050045
46.subhead {
Gunnar Mills97195442018-11-26 16:51:57 -060047 width: 100%;
Iftekharul Islam8947e702017-07-27 10:28:07 -050048 border-bottom: 1px solid $medgrey;
49 padding-bottom: .5em;
Gunnar Mills84e114a2018-11-14 13:44:41 -060050}