site/_includes/styles/base/animations.css

23 lines
1 KiB
CSS
Raw Normal View History

/*
/ _ _ _
/ __ _ _ __ (_)_ __ ___ __ _| |_(_) ___ _ __ ___
/ / _` | '_ \| | '_ ` _ \ / _` | __| |/ _ \| '_ \/ __|
/ | (_| | | | | | | | | | | (_| | |_| | (_) | | | \__ \
/ \__,_|_| |_|_|_| |_| |_|\__,_|\__|_|\___/|_| |_|___/
/
/ animations - reusable css animations */
2025-09-30 22:22:06 -05:00
@keyframes bg-move {
2025-10-28 14:28:31 -05:00
0% { background-position: 0 0; }
to { background-position: -960px -960px; }
2025-10-28 12:51:40 -05:00
}
2025-10-28 14:28:31 -05:00
@keyframes outline-flash {
2025-10-28 12:51:40 -05:00
0% { outline-width: 0rem; }
2025-10-28 14:28:31 -05:00
to { outline-width: .5rem; outline-color: transparent; }
2025-10-28 12:51:40 -05:00
}
@keyframes ticker {
2025-10-28 14:28:31 -05:00
0% { transform: translate3d(0, 0, 0); }
to { transform: translate3d(-100%, 0, 0); }
}