/*
 * Custom category-heading animations.
 *
 * To add a new animation option to the board builder's "Category heading ->
 * Animation" dropdown:
 *
 *   1. Write a @keyframes rule here, e.g.:
 *
 *        @keyframes msc-bounce-in {
 *          0%   { transform: translateY(-20px); opacity: 0; }
 *          60%  { transform: translateY(4px);   opacity: 1; }
 *          100% { transform: translateY(0); }
 *        }
 *
 *   2. Register it in includes/class-msd-animations.php:
 *
 *        'bounce' => array(
 *            'label' => 'Bounce in (on load)',
 *            'css'   => 'msc-bounce-in .6s ease both',
 *        ),
 *
 * That's it — no other file needs to change. This file is enqueued right
 * after menu.css on every page the menu shortcodes render on.
 */

@keyframes msc-scale-pulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.035); }
}

@keyframes msc-ring-pulse {
	0%   { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
	100% { box-shadow: 0 0 0 14px currentColor; opacity: 0; }
}
