From f1bd3b1027d1a706320bfc6f894ccc7cf3e98163 Mon Sep 17 00:00:00 2001 From: Wx-2025 <351320169@qq.com> Date: Thu, 22 Jan 2026 00:04:08 +0800 Subject: [PATCH] Update print statement from 'Hello' to 'Goodbye' --- assets/style.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/assets/style.css b/assets/style.css index 0ce9acb..9826157 100644 --- a/assets/style.css +++ b/assets/style.css @@ -729,3 +729,25 @@ hr.header-divider { #amily2_test_api_connection { margin-left: 10px; } + +/* === 消息高亮样式 === */ +.highlight_message { + animation: highlight-pulse 2s ease-out; + border: 2px solid #ff9800 !important; + box-shadow: 0 0 15px rgba(255, 152, 0, 0.5); +} + +@keyframes highlight-pulse { + 0% { + background-color: rgba(255, 152, 0, 0.3); + transform: scale(1.02); + } + 50% { + background-color: rgba(255, 152, 0, 0.1); + transform: scale(1); + } + 100% { + background-color: transparent; + transform: scale(1); + } +}