Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_animation.css « css « src « gohugoioTheme « themes « docs - github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 997931ac42311ff6249bcdcd02e8a12f2a7a5da7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.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;
}