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

59 lines
1.1 KiB
SCSS
Raw Normal View History

/*
* Banner
*
* Addtional announcements that generally follow a hero
*/
.banner {
background: $mist;
padding: $unit * 4;
2015-03-01 23:02:34 -05:00
min-height: $unit * 12;
2015-03-05 00:39:57 -05:00
@media handheld and (max-width: $phone-breakpoint),
screen and (max-device-width: $phone-breakpoint),
screen and (max-width: $tablet-breakpoint) {
padding: $unit * 2;
}
&.is-centered {
text-align: center;
}
2015-03-05 00:39:57 -05:00
.button {
@media handheld and (max-width: $phone-breakpoint),
screen and (max-device-width: $phone-breakpoint),
screen and (max-width: $tablet-breakpoint) {
display: block;
}
}
.banner-ng-annoucement {
background: url('/resources/images/logos/ng-conf/ng-conf-shield.png') 0px 0px no-repeat;
padding-left: 68px;
margin-right: $unit * 3;
display: inline-block;
2015-03-05 00:39:57 -05:00
@media handheld and (max-width: $phone-breakpoint),
screen and (max-device-width: $phone-breakpoint),
screen and (max-width: $tablet-breakpoint) {
background: none;
padding-left: 0px;
margin: 0px 0px $unit 0px;
}
}
h3 {
opacity: .87;
line-height: 34px;
2015-03-03 01:38:35 -05:00
margin: 0;
}
h4 {
line-height: 24px;
}
2015-03-01 09:42:31 -05:00
p,
h4 {
margin: 0px;
}
}