site/_includes/styles/base/animations.css
Ruben 66476b440c
All checks were successful
/ build (push) Successful in 4m31s
better attention flash
2025-10-28 14:28:31 -05:00

23 lines
No EOL
1 KiB
CSS

/* ╭───────────────────────────────────────────────────────╮
/ │ _ _ _ │
/ │ __ _ _ __ (_)_ __ ___ __ _| |_(_) ___ _ __ ___ │
/ │ / _` | '_ \| | '_ ` _ \ / _` | __| |/ _ \| '_ \/ __| │
/ │ | (_| | | | | | | | | | | (_| | |_| | (_) | | | \__ \ │
/ │ \__,_|_| |_|_|_| |_| |_|\__,_|\__|_|\___/|_| |_|___/ │
/ ╰───────────────────────────────────────────────────────╯
/ animations - reusable css animations */
@keyframes bg-move {
0% { background-position: 0 0; }
to { background-position: -960px -960px; }
}
@keyframes outline-flash {
0% { outline-width: 0rem; }
to { outline-width: .5rem; outline-color: transparent; }
}
@keyframes ticker {
0% { transform: translate3d(0, 0, 0); }
to { transform: translate3d(-100%, 0, 0); }
}