blob: 1547e300ce375cece4026324f0ffb127c7f486ac [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 {
7 position: relative;
8 border-bottom: 1px solid $lightbg__grey;
9 margin: 1.625em 0 1.2em 0;
10 .h4 {
11 padding: 0;
12 margin: 0 0 .5em 0;
13 font-weight: bold;
14 }
15}
16
Michael Davis19475752017-02-23 18:30:23 -060017.content__container {
Michael Davis19475752017-02-23 18:30:23 -060018 margin-left: $nav__toplvlWidth;
Michael Davis0f03ad12017-02-27 16:54:18 -060019 padding: 1em .1em;
Michael Davisc5626182017-03-10 15:48:05 -060020 transition: left 1s ease;
Michael Davis0f03ad12017-02-27 16:54:18 -060021 @include mediaQuery(x-small){
Michael Davis272297b2017-04-24 12:11:53 -050022 //margin-left: $nav__toplvlWidth + $nav__seclvlWidth;
Michael Davis0f03ad12017-02-27 16:54:18 -060023 padding: 1rem 2rem;
Michael Davis19475752017-02-23 18:30:23 -060024 }
25}
Michael Davis6af13462017-04-04 14:07:02 -050026
27section.row {
Iftekharul Islamcd789502017-04-19 14:37:55 -050028 padding-left: 0;
29 padding-right: 0;
Michael Davis272297b2017-04-24 12:11:53 -050030}
31
32.content-header {
33 font-weight: 700;
34 margin-bottom: 0;
35 margin-top: 2em;
36}
37
38.content-label {
39 color: darken($lightgrey, 10%);
40 text-transform: uppercase;
41 font-weight: 700;
42 font-size: .75em;
43 margin-bottom: 0;
44}
45
46.content__container h1 {
47 margin-left: -.3em;
48}