From: Brandon Arnold Date: Tue, 2 Aug 2016 00:56:24 +0000 (-0700) Subject: animate inky X-Git-Tag: v2.3.0~24 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cf7f34a5747b46848bd1216848220488d6bbe13f;p=thirdparty%2Ffoundation%2Ffoundation-emails.git animate inky --- diff --git a/docs/assets/scss/_course-callout.scss b/docs/assets/scss/_course-callout.scss index dc85373b..2eccafe3 100644 --- a/docs/assets/scss/_course-callout.scss +++ b/docs/assets/scss/_course-callout.scss @@ -40,8 +40,10 @@ } .footer-course-upsell { + overflow: hidden; img { margin-top: 35px; + animation: ad-unit-hover 8s infinite ease; } border-top: 1px solid #cacaca; background: #F5F5F5; @@ -67,3 +69,18 @@ font-size: 14px; } } + +@keyframes ad-unit-hover { + 0% { + transform: translateY(30px); + } + + 55% { + transform: translateY(0); + } + + 100% { + transform: translateY(30px); + } + +}