diff --git a/index.html b/index.html index f8f1b8d..874438f 100644 --- a/index.html +++ b/index.html @@ -365,14 +365,58 @@ button:disabled { 0 0 20px var(--pip-color) !important; /* Stacks 3 layers of glow for maximum brightness */ opacity: 1 !important; } - + +/* --- ROBCO UPDATE TICKER --- */ +.ticker-window { + height: 250px; + overflow: hidden; + position: relative; + background: rgba(0, 0, 0, 0.5); + border: 1px inset var(--pip-color); + margin-top: 15px; + padding: 10px; + text-align: left; + box-shadow: inset 0 0 15px rgba(0,0,0,0.8); +} + +.ticker-text { + position: absolute; + width: 95%; + /* 35s is the speed. Lower = faster, Higher = slower */ + animation: scrollTicker 35s linear infinite; +} + +/* Pause the scrolling when the mouse hovers over it */ +.ticker-window:hover .ticker-text { + animation-play-state: paused; +} + +@keyframes scrollTicker { + 0% { top: 100%; } + 100% { top: -200%; } +} + +.patch-version { + /* color: #ffffff; // <-- THE PATCH: Remove hardcoded white color */ + font-weight: bold; + text-shadow: 0 0 5px var(--pip-color); /* <-- THE PATCH: Apply theme-consistent glow */ + margin-top: 20px; + border-bottom: 1px dashed var(--pip-color); + display: inline-block; +} +.patch-note { + margin-bottom: 8px; + font-size: 15px; + padding-left: 10px; + border-left: 2px solid var(--pip-color); +}