12 lines
514 B
CSS
12 lines
514 B
CSS
![]() |
@charset "UTF-8";
|
||
|
|
||
|
/*!
|
||
|
* animate.css -http://daneden.me/animate
|
||
|
* Version - 3.6.1
|
||
|
* Licensed under the MIT license - http://opensource.org/licenses/MIT
|
||
|
*
|
||
|
* Copyright (c) 2018 Daniel Eden
|
||
|
*/
|
||
|
|
||
|
.animated{animation-duration:1s;animation-fill-mode:both}.animated.infinite{animation-iteration-count:infinite}@keyframes pulse{0%{transform:scaleX(1)}50%{transform:scale3d(1.05,1.05,1.05)}to{transform:scaleX(1)}}.pulse{animation-name:pulse}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{animation-name:fadeIn}
|