Skip to content

Instantly share code, notes, and snippets.

@croso-df
croso-df / animations.css
Last active August 12, 2017 03:04
Page revealing animations
@keyframes fade-in-right {
from {
opacity: 0;
transform: translateX(-15px);
}
to {
opacity: 1;
transform: translateX(0);
}
}