mirror of
https://github.com/tiennm99/hugoDocs.git
synced 2026-09-16 16:24:45 +00:00
git-subtree-dir: themes/gohugoioTheme git-subtree-split: 7dd8a302409a20362e4c610798cc19661b336363
22 lines
281 B
CSS
22 lines
281 B
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;
|
|
}
|