angular-docs-cn/public/resources/css/module/_banner.scss

34 lines
554 B
SCSS
Raw Permalink Normal View History

/*
* Banner
*
* Addtional information about the page located below the hero
*/
.banner {
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;
include respond-to('mobile') {
padding: ($unit * 2);
2015-03-05 00:39:57 -05:00
}
&.is-plain {
background: $white;
height: auto;
overflow: visible;
}
2015-03-01 09:42:31 -05:00
p, .text-body {
color: $blue-grey-500;
font-size: 18px;
line-height: 32px;
margin: 0;
2015-03-01 09:42:31 -05:00
}
2016-09-24 21:51:40 -04:00
}