From b2101dfa008eb4574052cf538a6c5999f73bc485 Mon Sep 17 00:00:00 2001 From: fegger Date: Mon, 7 Sep 2026 10:08:53 +0200 Subject: [PATCH] Show terminal glyph in the page logo tile --- index.html | 8 +++++++- style.css | 26 +++++++++++++++++--------- 2 files changed, 24 insertions(+), 10 deletions(-) diff --git a/index.html b/index.html index 03cb5de..0811a0b 100644 --- a/index.html +++ b/index.html @@ -22,7 +22,13 @@
- +

GG36 ~/

diff --git a/style.css b/style.css index 79d5cf2..ec45839 100644 --- a/style.css +++ b/style.css @@ -72,23 +72,31 @@ body { gap: 16px; } -.logo-dot { +.logo-tile { width: 46px; height: 46px; border-radius: 14px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 10px 30px -8px rgba(247, 107, 47, 0.5); - position: relative; + display: flex; + align-items: center; + justify-content: center; flex: none; } -.logo-dot::after { - content: ""; - position: absolute; - inset: 10px; - border-radius: 8px; - background: rgba(7, 11, 20, 0.55); - backdrop-filter: blur(2px); +.logo-tile svg { + width: 28px; + height: 28px; + display: block; +} + +/* terminal glyph (feathericon "terminal", MIT) on the accent tile */ +.logo-tile .logo-frame { + fill: var(--bg-soft); +} + +.logo-tile .logo-cursor { + fill: var(--text); } .brand-text h1 {