From 3643b46a3f5ae21a246d81049c8a3805b1b23ccf Mon Sep 17 00:00:00 2001 From: ashley Date: Sat, 4 Oct 2025 15:35:08 +0200 Subject: [PATCH] fix stuff + add stuff --- html/landing.ejs | 27 ++++++++------------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/html/landing.ejs b/html/landing.ejs index 4ea320ab..221c2391 100644 --- a/html/landing.ejs +++ b/html/landing.ejs @@ -306,7 +306,6 @@ const randomFeatures = features.sort(() => 0.5 - Math.random()).slice(0, 3); -
POKE logo @@ -317,14 +316,13 @@ const randomFeatures = features.sort(() => 0.5 - Math.random()).slice(0, 3); --speed: 30s; position: relative; overflow: hidden; - border-top: 1px solid #222; - border-bottom: 1px solid #222; margin: 0 auto; max-width: 1200px; height: 44px; display: flex; align-items: center; - background: #0b0b0b; + background: transparent; + border: none; } .pk-marquee:focus-within .pk-marquee__track, .pk-marquee:hover .pk-marquee__track { @@ -340,25 +338,17 @@ const randomFeatures = features.sort(() => 0.5 - Math.random()).slice(0, 3); padding-inline: var(--gap); } .pk-marquee__item a { - color: #bbb; + color: #fff; text-decoration: none; font-size: 14px; line-height: 1; - padding: 8px 12px; - border-radius: 6px; - border: 1px solid #1f1f1f; - display: inline-block; - transition: transform .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease; - background: #111; - } - .pk-marquee__item a:focus-visible { - outline: 2px solid #4c8dff; - outline-offset: 2px; + padding: 0; + background: none; + border: none; + transition: opacity .2s ease, transform .15s ease; } .pk-marquee__item a:hover { - color: #fff; - background: #181818; - border-color: #2a2a2a; + opacity: 0.7; transform: translateY(-1px); } @keyframes pk-scroll { @@ -402,7 +392,6 @@ const randomFeatures = features.sort(() => 0.5 - Math.random()).slice(0, 3); (function () { var marquee = document.querySelector('.pk-marquee'); if (!marquee) return; - var tracks = marquee.querySelectorAll('.pk-marquee__track'); if (tracks.length < 2) return;