ref: 2d7709d15584e4c11138cd7fe92717a2a58e4585
dir: /docs/themes/gohugoioTheme/src/css/_animation.css/
.animated { animation-duration: .5s; animation-fill-mode: forwards; animation-timing-function: ease-in-out; } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .fadeIn { animation-name: fadeIn; } .animated-delay-1 { animation-delay: 0.5s; }