diff --git a/display.php b/display.php index 97b21dc..0ca23d1 100644 --- a/display.php +++ b/display.php @@ -38,6 +38,17 @@ qh_page_start( padding-top: 0 !important; padding-bottom: 0 !important; } + @keyframes highlightPulse { + 0% { transform: scale(1); box-shadow: var(--shadow); border: 2px solid transparent; } + 50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(15, 139, 141, 0.6); border: 2px solid var(--accent-strong); } + 100% { transform: scale(1); box-shadow: var(--shadow); border: 2px solid transparent; } + } + .blinking-ticket { + animation: highlightPulse 1.5s ease-in-out infinite; + z-index: 10; + position: relative; + background-color: #fff !important; + }