23 lines
No EOL
1 KiB
CSS
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); }
|
|
} |