The:General disclaimer: Difference between revisions

No edit summary
No edit summary
Line 9: Line 9:
span, p, img, a, button, h1, h2, h3, h4, h5, h6 {
span, p, img, a, button, h1, h2, h3, h4, h5, h6 {
     animation: 2s trans ease-out;
     animation: 2s trans ease-out;
}
@keyframes trans {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1
    }
}
}
}}
}}