2017-04-17 15:03:23 +02:00
|
|
|
@import "constants";
|
|
|
|
@import "colors";
|
|
|
|
@import "mixins";
|
|
|
|
@import "placeholders";
|
|
|
|
@import "typography";
|
2017-01-03 14:53:56 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.landing {
|
|
|
|
@extend %new-type;
|
|
|
|
background-color: #FFFFFF;
|
|
|
|
}
|
2016-01-29 10:52:06 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.landing-panel {
|
|
|
|
@include vertical-padding(60px);
|
|
|
|
}
|
2017-01-02 18:07:04 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.landing-panel-inner-content {
|
|
|
|
width: $page-width;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2017-01-02 18:07:04 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.hero-tagline {
|
|
|
|
width: 500px;
|
|
|
|
font-size: 30px;
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
2017-01-02 18:07:04 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.hero-tagline-em {
|
|
|
|
color: $blue;
|
|
|
|
font-size: 36px;
|
|
|
|
font-style: normal;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2016-01-29 10:52:06 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.hero-text {
|
|
|
|
width: 500px;
|
2016-01-29 10:52:06 +01:00
|
|
|
}
|
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.hero-illustration {
|
|
|
|
width: 500px;
|
2017-01-02 18:07:04 +01:00
|
|
|
}
|
2016-01-29 10:52:06 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
.hero-button {
|
|
|
|
@include horizontal-padding(30px);
|
2016-01-29 11:23:36 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
display: inline-block;
|
|
|
|
height: 60px;
|
|
|
|
line-height: 60px;
|
|
|
|
border-radius: 60px;
|
|
|
|
background-color: $blue;
|
|
|
|
color: #FFFFFF;
|
|
|
|
font-size: 24px;
|
|
|
|
margin-top: 30px;
|
2016-02-16 12:01:39 +01:00
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
&:hover {
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-decoration: none;
|
|
|
|
background-color: $light-blue;
|
2016-02-16 12:01:39 +01:00
|
|
|
}
|
|
|
|
|
2017-04-17 15:03:23 +02:00
|
|
|
&:focus {
|
|
|
|
color: #FFFFFF;
|
|
|
|
text-decoration: none;
|
2016-02-16 12:01:39 +01:00
|
|
|
}
|
2017-01-02 18:07:04 +01:00
|
|
|
}
|