diff --git a/index.html b/index.html index 2e5af3b..f89a763 100644 --- a/index.html +++ b/index.html @@ -16,7 +16,7 @@ description: pages.home.description

{% t pages.home.video-heading %}

- {% tmd pages.home.video-text %} +
{% tmd pages.home.video-text %}
{% t pages.home.video-btn %} diff --git a/src/scss/_hero.scss b/src/scss/_hero.scss index a35da77..fe02daa 100644 --- a/src/scss/_hero.scss +++ b/src/scss/_hero.scss @@ -21,6 +21,9 @@ &--grey { background: $color-gray-light; } + &--blue { + background: $color-blue; + } &--grey-blue { background: $color-gray-light-blueish; } @@ -36,6 +39,9 @@ margin: 0 auto; position: relative; z-index: 3; + @include mq($to: extrasmall) { + padding: 0; + } @include mq($from: large) { padding-top: 60px; padding-bottom: 120px; diff --git a/src/scss/_section.scss b/src/scss/_section.scss index a234f7b..328d5ab 100644 --- a/src/scss/_section.scss +++ b/src/scss/_section.scss @@ -68,14 +68,26 @@ $m: 'section'; text-align: center; padding-bottom: 60px; width: 100%; + @include mq($to: small) { // optical + text-align: left; + padding: 0 30px; + } + @include mq($to: extrasmall) { + padding: 0; + } .#{$m} { &__title { - @include font-title-large(); + @include font-title-xlarge(); margin-bottom: 20px; } + &__lead { + + @include font-lead(); + color: $color-gray-dark; + } &__btn-grp { - margin: 25px 0; + margin: 30px 0 20px; @include mq($to: 600px) { // optical & > * { width: 100%; @@ -83,7 +95,7 @@ $m: 'section'; } } &__content { - max-width: 800px; + max-width: 860px; } } }