2015-02-27 00:30:02 -05:00
|
|
|
/*
|
|
|
|
* Banner
|
|
|
|
*
|
2016-09-12 11:34:29 -04:00
|
|
|
* Addtional information about the page located below the hero
|
2015-02-27 00:30:02 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
.banner {
|
2016-09-12 11:34:29 -04:00
|
|
|
background: rgba($blue-grey-50, .24);
|
|
|
|
border-bottom: 1px solid $blue-grey-50;
|
|
|
|
box-sizing: border-box;
|
|
|
|
font-size: 18px;
|
|
|
|
font-weight: 200;
|
|
|
|
padding: ($unit * 4) ($unit * 6);
|
2016-09-24 21:51:40 -04:00
|
|
|
min-height: 97px;
|
2016-09-12 11:34:29 -04:00
|
|
|
|
|
|
|
include respond-to('mobile') {
|
2016-01-14 20:12:17 -05:00
|
|
|
padding: ($unit * 2);
|
2015-03-05 00:39:57 -05:00
|
|
|
}
|
|
|
|
|
2016-09-12 11:34:29 -04:00
|
|
|
&.is-plain {
|
|
|
|
background: $white;
|
|
|
|
height: auto;
|
|
|
|
overflow: visible;
|
2015-06-29 09:44:08 -04:00
|
|
|
}
|
|
|
|
|
2015-03-01 09:42:31 -05:00
|
|
|
|
2016-09-12 11:34:29 -04:00
|
|
|
p, .text-body {
|
|
|
|
color: $blue-grey-500;
|
|
|
|
font-size: 18px;
|
2016-09-16 15:45:58 -04:00
|
|
|
line-height: 32px;
|
|
|
|
margin: 0;
|
2015-03-01 09:42:31 -05:00
|
|
|
}
|
2016-09-24 21:51:40 -04:00
|
|
|
}
|