From 1fb783c40f6493af0a1f18014c924767eebef65f Mon Sep 17 00:00:00 2001 From: pedrodelyra Date: Tue, 11 Aug 2015 12:16:53 -0300 Subject: [PATCH] Adding comments extra field slide down animation --- style.css | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+), 0 deletions(-) diff --git a/style.css b/style.css index a23e7c1..8efc051 100644 --- a/style.css +++ b/style.css @@ -3706,3 +3706,43 @@ input[type=checkbox] { } /******* FIM - Bloco Highlights - FIM *******/ + + +/**** animated.css ****/ +.animated { + -webkit-animation-duration: 1s; + animation-duration: 1s; + -webkit-animation-fill-mode: both; + animation-fill-mode: both; +} + +.slideInDown { + -webkit-animation-name: slideInDown; + animation-name: slideInDown; +} + +@-webkit-keyframes slideInDown { + from { + -webkit-transform: translate3d(0, -100%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} + +@keyframes slideInDown { + from { + -webkit-transform: translate3d(0, 0%, 0); + transform: translate3d(0, -100%, 0); + visibility: visible; + } + + 100% { + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} -- libgit2 0.21.2