rustyeddy
1/25/2015 - 2:46 AM

Animation Gists see Animate.css for some really cool stuff.

Animation Gists see Animate.css for some really cool stuff.

@mixin zoomInDown( $args )
{
	-webkit-animation:	zoomInDown $args;
	-moz-animation:     zoomInDown $args;
	animation:          zoomInDown $args;
}

@mixin zoomOutDown( $args )
{
	-webkit-animation:	zoomOutDown $args;
	-moz-animation:		  zoomOutDown $args;
	animation:			    zoomOutDown $args;
}