2015-02-27 00:30:02 -05:00
|
|
|
/*
|
|
|
|
* Banner
|
|
|
|
*
|
|
|
|
* Addtional announcements that generally follow a hero
|
|
|
|
*/
|
|
|
|
|
|
|
|
.banner {
|
|
|
|
background: $mist;
|
2015-10-02 17:09:38 -04:00
|
|
|
padding: ($unit * 4) ($unit * 6);
|
2016-01-29 15:28:59 -05:00
|
|
|
min-height: $unit * 6;
|
2015-02-27 00:30:02 -05:00
|
|
|
|
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) {
|
2016-01-14 20:12:17 -05:00
|
|
|
padding: ($unit * 2);
|
2015-03-05 00:39:57 -05:00
|
|
|
}
|
|
|
|
|
2015-02-27 00:30:02 -05:00
|
|
|
&.is-centered {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-06-29 17:26:16 -04:00
|
|
|
.button.button-large {
|
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) {
|
|
|
|
display: block;
|
|
|
|
}
|
2015-06-29 17:26:16 -04:00
|
|
|
padding: 0;
|
2015-03-05 00:39:57 -05:00
|
|
|
}
|
|
|
|
|
2015-06-29 09:44:08 -04:00
|
|
|
.ng-conf-logo {
|
|
|
|
background: url('/resources/images/logos/ng-conf/ng-conf-shield.png') left no-repeat;
|
|
|
|
padding: $unit 68px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.angularconnect-logo {
|
|
|
|
background: url('/resources/images/logos/angularconnect/angularconnect-logo-med.png') left no-repeat;
|
|
|
|
padding: $unit 0 $unit 108px;
|
|
|
|
}
|
|
|
|
|
2015-02-27 00:30:02 -05:00
|
|
|
.banner-ng-annoucement {
|
|
|
|
display: inline-block;
|
2015-06-29 09:44:08 -04:00
|
|
|
text-align: left;
|
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;
|
2015-06-29 09:44:08 -04:00
|
|
|
text-align: center;
|
2015-03-05 00:39:57 -05:00
|
|
|
}
|
2015-02-27 00:30:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
opacity: .87;
|
|
|
|
line-height: 34px;
|
2015-03-03 01:38:35 -05:00
|
|
|
margin: 0;
|
2015-02-27 00:30:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
line-height: 24px;
|
|
|
|
}
|
2015-03-01 09:42:31 -05:00
|
|
|
|
|
|
|
p,
|
|
|
|
h4 {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2015-02-27 00:30:02 -05:00
|
|
|
}
|