X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6753452b63d937fd05ad485edc650565f5fa064e..24721591455e048cffca365384e6759daae05916:/src/wolnelektury/static/2021/css/components/_support.scss diff --git a/src/wolnelektury/static/2021/css/components/_support.scss b/src/wolnelektury/static/2021/css/components/_support.scss new file mode 100644 index 000000000..848780422 --- /dev/null +++ b/src/wolnelektury/static/2021/css/components/_support.scss @@ -0,0 +1,40 @@ +.c-support { + display: flex; + margin-top: 100px; + flex-direction: column; + border-top: 4px solid $color-light-gray; + border-bottom: 4px solid $color-light-gray; + padding: 90px 0 40px 0; + + h2 { + margin: 0; + font-weight: $bold; + @include font-size(64px); + letter-spacing: -0.02em; + color: $color-primary; + line-height: 64px; + } + a { + font-weight: $bold; + @include font-size(48px); + line-height: 56px; + text-align: center; + letter-spacing: 0.01em; + color: $color-primary; + border: 12px solid $color-yellow; + box-sizing: border-box; + border-radius: 40px; + width: 550px; + display: inline-block; + padding: 33px 23px 33px 193px; + margin-right: 0; + margin-left: auto; + position: relative; + top: -50px; + transition: all $ease-dynamic 350ms; + + &:hover { + background: $color-yellow; + } + } +}