252 lines
3.9 KiB
SCSS
252 lines
3.9 KiB
SCSS
@import "constants";
|
|
@import "colors";
|
|
@import "mixins";
|
|
@import "placeholders";
|
|
@import "typography";
|
|
|
|
.landing {
|
|
@extend %new-type;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.landing-panel {
|
|
@include vertical-padding(60px);
|
|
}
|
|
|
|
.landing-panel-inner-content {
|
|
width: $page-width;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.hero-tagline {
|
|
width: 500px;
|
|
font-size: 30px;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
.hero-tagline-em {
|
|
color: $blue;
|
|
font-size: 36px;
|
|
font-style: normal;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.hero-text {
|
|
width: 500px;
|
|
}
|
|
|
|
.hero-illustration {
|
|
width: 500px;
|
|
}
|
|
|
|
.hero-button {
|
|
@include horizontal-padding(30px);
|
|
|
|
display: inline-block;
|
|
height: 60px;
|
|
line-height: 60px;
|
|
border-radius: 60px;
|
|
background-color: $blue;
|
|
color: #FFFFFF;
|
|
font-size: 24px;
|
|
margin-top: 30px;
|
|
|
|
&:hover {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
background-color: $light-blue;
|
|
}
|
|
|
|
&:focus {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.hero-phone-cta {
|
|
color: $grey;
|
|
text-align: center;
|
|
width: 293px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.landing-panel-title {
|
|
font-size: 30px;
|
|
font-weight: normal;
|
|
text-align: center;
|
|
margin-bottom: 40px;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.features-panel {
|
|
background-color: $blue;
|
|
}
|
|
|
|
.features-panel-title {
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.features {
|
|
@extend %horizontal-list;
|
|
}
|
|
|
|
$feature-width: 320px;
|
|
$features-count: 3;
|
|
|
|
.feature {
|
|
@extend %horizontal-list-item;
|
|
width: $feature-width;
|
|
margin-right: calc((#{$page-width} - (#{$feature-width} * #{$features-count})) / (#{$features-count} - 1));
|
|
}
|
|
|
|
.feature-text {
|
|
text-align: center;
|
|
color: #FFFFFF;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.feature-text-em {
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
.feature-image {
|
|
display: block;
|
|
margin: 0 auto;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.quotes {
|
|
@extend %horizontal-list;
|
|
}
|
|
|
|
$quote-width: 500px;
|
|
$quote-count: 2;
|
|
|
|
.quote {
|
|
@extend %horizontal-list-item;
|
|
width: $quote-width;
|
|
margin-right: calc((#{$page-width} - (#{$quote-width} * #{$quote-count}))/ (#{$quote-count} - 1));
|
|
background-color: #FFFFFF;
|
|
box-shadow: 0 4px 16px 0 rgba(153, 153, 153, 0.2);
|
|
padding: 24px;
|
|
}
|
|
|
|
.quote-quotation-mark {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.quote-content {
|
|
font-size: 18px;
|
|
width: 388px;
|
|
margin-bottom: 24px;
|
|
}
|
|
|
|
.quote-author {
|
|
font-size: 14px;
|
|
margin-left: 64px;
|
|
}
|
|
|
|
.quote-author-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.numbers-panel {
|
|
background-color: $light-grey;
|
|
}
|
|
|
|
.numbers {
|
|
@extend %horizontal-list;
|
|
}
|
|
|
|
$number-width: 320px;
|
|
$number-count: 3;
|
|
|
|
.number {
|
|
@extend %horizontal-list-item;
|
|
width: $number-width;
|
|
margin-right: calc((#{$page-width} - (#{$number-width} * #{$number-count}))/ (#{$number-count} - 1));
|
|
text-align: center;
|
|
}
|
|
|
|
.number-value {
|
|
color: $blue;
|
|
font-weight: bold;
|
|
font-size: 36px;
|
|
}
|
|
|
|
.number-label {
|
|
font-weight: bold;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.users {
|
|
@extend %horizontal-list;
|
|
}
|
|
|
|
$image-width: 170px;
|
|
$images-total-width: $image-width * 5;
|
|
$images-count: 5;
|
|
|
|
.user {
|
|
@extend %horizontal-list-item;
|
|
margin-right: calc((#{$page-width} - (#{$images-total-width}))/ (#{$images-count} - 1));
|
|
|
|
&:hover {
|
|
opacity: 0.6;
|
|
}
|
|
}
|
|
|
|
.user-image {
|
|
width: $image-width;
|
|
}
|
|
|
|
.cta-panel {
|
|
background-color: $blue;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.cta-panel-title {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
margin-top: 13px;
|
|
}
|
|
|
|
.cta-panel-explanation {
|
|
font-size: 24px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
$cta-panel-button-height: 60px;
|
|
$cta-panel-button-border-size: 2px;
|
|
|
|
.cta-panel-button {
|
|
@include horizontal-padding(30px);
|
|
|
|
display: block;
|
|
height: $cta-panel-button-height;
|
|
line-height: $cta-panel-button-height - (2 * $cta-panel-button-border-size);
|
|
border-radius: $cta-panel-button-height;
|
|
border: $cta-panel-button-border-size solid #FFFFFF;
|
|
color: #FFFFFF;
|
|
font-size: 24px;
|
|
|
|
&:hover {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
&:focus {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.cta-panel-phone-cta {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
text-align: center;
|
|
width: 293px;
|
|
margin-top: 12px;
|
|
margin-bottom: 0;
|
|
}
|