github.com/lyeb/hugo@v0.47.1/docs/themes/gohugoioTheme/src/css/_animation.css (about)

     1  .animated {
     2    animation-duration: .5s;
     3    animation-fill-mode: forwards;
     4    animation-timing-function: ease-in-out;
     5  }
     6  
     7  @keyframes fadeIn {
     8    from {
     9      opacity: 0;
    10    }
    11  
    12    to {
    13      opacity: 1;
    14    }
    15  }
    16  .fadeIn {
    17    animation-name: fadeIn;
    18  }
    19  .animated-delay-1 {
    20    animation-delay: 0.5s;
    21  }