2015-12-20 05:22:45 +01:00
|
|
|
|
|
|
|
.section {
|
2016-11-14 11:59:16 +01:00
|
|
|
padding-top: ($spacer * 3);
|
|
|
|
padding-bottom: ($spacer * 3);
|
2015-12-20 05:22:45 +01:00
|
|
|
|
2017-05-06 18:03:40 +02:00
|
|
|
&:last-child { border-bottom: 0; }
|
2016-01-22 16:03:56 +01:00
|
|
|
|
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;
|
|
|
|
|
2016-02-08 14:35:02 +01:00
|
|
|
.row {
|
|
|
|
flex: 0 0 100%;
|
|
|
|
}
|
2015-12-20 18:03:44 +01:00
|
|
|
|
2015-12-20 05:22:45 +01:00
|
|
|
@media ($screen-sm) {
|
2017-04-11 14:30:58 +02:00
|
|
|
padding-top: ($spacer * 5);
|
|
|
|
padding-bottom: ($spacer * 5);
|
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;
|
|
|
|
}
|
2017-04-12 16:36:57 +02:00
|
|
|
|
|
|
|
.text-left & {
|
|
|
|
text-align: left;
|
|
|
|
}
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.section-title {
|
2017-04-12 18:31:59 +02:00
|
|
|
@extend .h2;
|
2015-12-20 05:22:45 +01:00
|
|
|
margin-top: 0;
|
2015-12-21 14:03:31 +01:00
|
|
|
margin-bottom: ($spacer * 2);
|
2015-12-20 19:31:36 +01:00
|
|
|
|
2015-12-21 14:34:02 +01:00
|
|
|
// the bottom line
|
2017-05-31 00:22:14 +02:00
|
|
|
&:after {
|
2017-05-06 18:03:40 +02:00
|
|
|
content: '';
|
2017-03-28 14:22:01 +02:00
|
|
|
height: 2px;
|
|
|
|
width: 3rem;
|
2015-12-20 19:31:36 +01:00
|
|
|
display: block;
|
2017-05-06 18:03:40 +02:00
|
|
|
margin: ($spacer * 2) auto 0;
|
2017-04-10 17:14:35 +02:00
|
|
|
background: $gray-light;
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
2017-04-12 16:36:57 +02:00
|
|
|
|
|
|
|
.text-left & {
|
|
|
|
&:after {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
}
|
2015-12-20 05:22:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.section-description {
|
2015-12-21 14:48:45 +01:00
|
|
|
font-size: $font-size-lg;
|
2015-12-20 05:22:45 +01:00
|
|
|
margin-bottom: 0;
|
2017-04-11 14:30:58 +02:00
|
|
|
color: $brand-main-gray-lighter;
|
2015-12-20 05:22:45 +01:00
|
|
|
|
2017-04-19 18:35:16 +02:00
|
|
|
+ .section-description,
|
|
|
|
+ p {
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-06 18:03:40 +02:00
|
|
|
//
|
|
|
|
// Specific sections
|
|
|
|
//
|
|
|
|
@import '_sections/section-cta-whitepaper';
|
|
|
|
@import '_sections/section-cta-community';
|
2017-05-18 19:33:14 +02:00
|
|
|
@import '_sections/section-cta-enterprise';
|
2017-05-06 18:03:40 +02:00
|
|
|
@import '_sections/section-partners';
|
2017-05-23 18:43:12 +02:00
|
|
|
@import '_sections/section-blog';
|