mirror of
https://github.com/gohugoio/hugo.git
synced 2024-12-04 18:08:01 -05:00
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;
|
||
|
}
|