diff options
author | Sam Potts <sam@potts.es> | 2020-01-30 14:23:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-30 14:23:10 +0000 |
commit | 9d512911252cf4835c2b7364cb4ae392cb277a1d (patch) | |
tree | 5e6dcc7647285e49683f05d8a49187e8078d0d2b /demo/src/sass/components/header.scss | |
parent | 44d3a17870949e828e5b1a4619a30dfcb626a174 (diff) | |
parent | b2ac730572ad81aa9755e8b7852c53ceba0e8e9f (diff) | |
download | plyr-9d512911252cf4835c2b7364cb4ae392cb277a1d.tar.lz plyr-9d512911252cf4835c2b7364cb4ae392cb277a1d.tar.xz plyr-9d512911252cf4835c2b7364cb4ae392cb277a1d.zip |
Merge pull request #1663 from sampotts/master
Merge back to beta
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); + } } } |