/*! * animate.css -http://daneden.me/animate * Version - 3.5.1 * Licensed under the MIT license - http://opensource.org/licenses/MIT * * Copyright (c) 2016 Daniel Eden */ .animated { animation-duration: 1s; animation-fill-mode: both; } @keyframes fade-in { 0% { opacity: 0; } 100% { opacity: 1; } } .fade-in { animation-name: fade-in; } @keyframes fade-in-down { 0% { opacity: 0; transform: translate3d(0, -100%, 0); } 100% { opacity: 1; transform: none; } } .fade-in-down { animation-name: fade-in-down; }