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);
|
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;
|
2015-12-20 19:31:36 +01:00
|
|
|
min-height: 420px;
|
2015-12-20 18:03:44 +01:00
|
|
|
|
2015-12-20 19:31:36 +01:00
|
|
|
.row { flex: 1; }
|
2015-12-20 18:03:44 +01:00
|
|
|
|
2015-12-20 05:22:45 +01:00
|
|
|
@media ($screen-sm) {
|
2015-12-20 19:31:36 +01:00
|
|
|
padding-top: ($spacer * 4);
|
|
|
|
padding-bottom: ($spacer * 4);
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-20 19:31:36 +01:00
|
|
|
.section-header {
|
|
|
|
margin-bottom: ($spacer * 4);
|
|
|
|
}
|
|
|
|
|
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 19:31:36 +01:00
|
|
|
|
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 21:45:28 +01:00
|
|
|
margin-bottom: 0;
|
2015-12-20 19:31:36 +01:00
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
height: 2px;
|
|
|
|
width: 5rem;
|
|
|
|
display: block;
|
|
|
|
margin: ($spacer * 2) auto 0 auto;
|
|
|
|
background: lighten($brand-main-gray, 30%);
|
|
|
|
}
|
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 {
|
2015-12-20 19:31:36 +01:00
|
|
|
background: $brand-main-blue; // fallback
|
|
|
|
background: linear-gradient(to bottom right, $brand-main-blue 0%, lighten($brand-main-blue, 10%) 100%);
|
2015-12-20 05:22:45 +01:00
|
|
|
|
2015-12-21 13:26:54 +01:00
|
|
|
.section-title,
|
|
|
|
.section-description { color: #fff }
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
|
|
|
|
2015-12-20 19:31:36 +01:00
|
|
|
.background--dark {
|
|
|
|
background: $brand-main-blue-dark; // fallback
|
|
|
|
background: linear-gradient(to bottom right, $brand-main-blue-dark 0%, lighten($brand-main-blue-dark, 10%) 100%);
|
2015-12-20 05:22:45 +01:00
|
|
|
|
2015-12-21 13:26:54 +01:00
|
|
|
.section-title,
|
|
|
|
.section-description { color: #fff }
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
|
|
|
|
2015-12-20 19:31:36 +01:00
|
|
|
.background--gray {
|
|
|
|
background: $brand-main-gray; // fallback
|
|
|
|
background: linear-gradient(to bottom right, $brand-main-gray 0%, lighten($brand-main-gray, 10%) 100%);
|
2015-12-20 05:22:45 +01:00
|
|
|
|
2015-12-21 13:26:54 +01:00
|
|
|
.section-title,
|
|
|
|
.section-description,
|
|
|
|
.form-control,
|
|
|
|
.form-label { color: #fff }
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|