From abf8f858df951b1a48f237511975924856bc5356 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Wed, 29 Apr 2026 09:34:08 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Palette:=20Unify=20branding=20an?= =?UTF-8?q?d=20add=20terminal=20cursor=20delight?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Convert logo to a link to index.html on all pages. - Add blinking terminal cursor (_) to logo with CSS animation. - Stabilize navigation hover state in index.html to prevent 2px layout shift. - Unify navigation link style in os2.html with '/' prefix. - Ensure consistent logo styling (text-3xl font-black italic) across pages. Co-authored-by: rtech-technologies <254326487+rtech-technologies@users.noreply.github.com> --- .jules/palette.md | 0 index.html | 7 +++++-- os2.html | 11 +++++++---- 3 files changed, 12 insertions(+), 6 deletions(-) create mode 100644 .jules/palette.md diff --git a/.jules/palette.md b/.jules/palette.md new file mode 100644 index 0000000..e69de29 diff --git a/index.html b/index.html index 449cb15..ff1088d 100644 --- a/index.html +++ b/index.html @@ -15,11 +15,14 @@ .industrial-border { border: 2px solid #27272a; } .license-box { background: #000; border: 1px solid #3f3f46; position: relative; } - .nav-link { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; color: #a1a1aa; transition: all 0.2s; } + .nav-link { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.2em; color: #a1a1aa; transition: all 0.2s; border-bottom: 2px solid transparent; } .nav-link:hover { color: #fff; border-bottom: 2px solid var(--lime); } .roadmap-card { border-left: 2px solid #3f3f46; transition: all 0.3s ease; } .roadmap-card:hover { border-left-color: var(--lime); background: #111113; } + + @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } + .terminal-blink { animation: blink 1s step-end infinite; } @@ -30,7 +33,7 @@