2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
.section {
|
2015-12-20 18:03:44 +01:00
|
|
|
padding-top: ($spacer * 2);
|
|
|
|
padding-bottom: ($spacer * 2);
|
|
|
|
min-height: 420px;
|
2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
// use this so animated elements coming in from outside of screen
|
|
|
|
// don't affect layout
|
|
|
|
overflow: hidden;
|
|
|
|
|
2015-12-20 18:03:44 +01:00
|
|
|
// vertically center everything
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.row { flex: 1 }
|
|
|
|
|
2015-12-20 05:22:45 +01:00
|
|
|
@media ($screen-sm) {
|
2015-12-20 18:03:44 +01:00
|
|
|
padding-top: ($spacer * 3);
|
|
|
|
padding-bottom: ($spacer * 3);
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title,
|
|
|
|
.section-description {
|
2015-12-20 18:03:44 +01:00
|
|
|
text-align: center;
|
|
|
|
|
2015-12-20 05:22:45 +01:00
|
|
|
@media ($screen-sm) {
|
|
|
|
max-width: 100%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
font-size: $font-size-h3;
|
|
|
|
margin-top: 0;
|
2015-12-20 18:03:44 +01:00
|
|
|
margin-bottom: $spacer;
|
2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
@media ($screen-sm) {
|
|
|
|
font-size: $font-size-h2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-description {
|
|
|
|
color: $text-color;
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
|
|
|
+ .section-description {
|
2015-12-20 18:03:44 +01:00
|
|
|
margin-top: $spacer;
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.section-actions {
|
2015-12-20 18:03:44 +01:00
|
|
|
margin-top: $spacer;
|
2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
.btn {
|
|
|
|
margin-left: 5px;
|
|
|
|
margin-right: 5px;
|
|
|
|
min-width: 200px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// Section backgrounds
|
|
|
|
//
|
|
|
|
.background--blue {
|
|
|
|
background: $brand-main-blue;
|
|
|
|
|
|
|
|
* { color: #fff }
|
|
|
|
}
|
|
|
|
|
|
|
|
.background--black {
|
|
|
|
background: $brand-main-black;
|
|
|
|
|
|
|
|
* { color: #fff }
|
|
|
|
}
|
|
|
|
|
|
|
|
.background--gray-dark {
|
|
|
|
background: $gray-dark;
|
|
|
|
|
|
|
|
* { color: #fff }
|
|
|
|
}
|