diff options
author | Sam Potts <sam@potts.es> | 2019-06-21 00:12:10 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-21 00:12:10 +1000 |
commit | 95092edc93d713b927c637cefc27945f8537d565 (patch) | |
tree | 27464f2f98a519f78ff3cc4a2c49ebdd5c6dab2c /demo/src/sass/components/header.scss | |
parent | 1e761e237aceb49b29291946a39eef958d6da966 (diff) | |
parent | c4b3e0672e86f2a2786f315bf8f54250cd1f7f78 (diff) | |
download | plyr-95092edc93d713b927c637cefc27945f8537d565.tar.lz plyr-95092edc93d713b927c637cefc27945f8537d565.tar.xz plyr-95092edc93d713b927c637cefc27945f8537d565.zip |
Merge pull request #1472 from sampotts/develop
v3.5.5
Diffstat (limited to 'demo/src/sass/components/header.scss')
-rw-r--r-- | demo/src/sass/components/header.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/demo/src/sass/components/header.scss b/demo/src/sass/components/header.scss index eab2214e..fd014ead 100644 --- a/demo/src/sass/components/header.scss +++ b/demo/src/sass/components/header.scss @@ -6,6 +6,13 @@ header { padding-bottom: $spacing-base; text-align: center; + h1 span { + animation: shrinkHide 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2s forwards; + display: inline-block; + font-weight: $font-weight-light; + opacity: 0.5; + } + .call-to-action { margin-top: ($spacing-base * 1.5); } @@ -15,5 +22,9 @@ header { max-width: 360px; padding-bottom: ($spacing-base * 2); text-align: left; + + p:first-of-type { + @include font-size($font-size-base + 1); + } } } |