shithub: hugo

ref: 98293eaa1570b5aff4452021c8b6d6c8560b3f06
dir: /themes/gohugoioTheme/src/css/_animation.css/

View raw version
.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;
}