diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-06 08:11:44 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-06 08:11:44 +0300 |
| commit | 57ef3df578b924a63c7387176eb0f43801f2f052 (patch) | |
| tree | d259baf03aca79355460ebe2bc540a73862b8384 | |
| parent | ad6f2ae6f6aa14926ef63a7fe124093dcceb024b (diff) | |
Add player logo to site header
| -rw-r--r-- | web/css/layout.css | 8 | ||||
| -rw-r--r-- | web/index.html | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/web/css/layout.css b/web/css/layout.css index 923c105..909ecfb 100644 --- a/web/css/layout.css +++ b/web/css/layout.css @@ -29,6 +29,14 @@ body { letter-spacing: 0.04em; color: var(--text-primary); text-decoration: none; + display: inline-flex; + align-items: center; + gap: 0.35rem; +} +.site-header .logo-img { + height: 1.5rem; + width: auto; + display: block; } .site-header .spacer { flex: 1 1 auto; } diff --git a/web/index.html b/web/index.html index b2c3ca6..fdb8be4 100644 --- a/web/index.html +++ b/web/index.html @@ -14,7 +14,7 @@ </head> <body> <header class="site-header" role="banner"> - <a href="/" class="logo">Player</a> + <a href="/" class="logo"><img src="/logo.png" alt="Player" class="logo-img">Player</a> <div class="spacer"></div> <div id="scan-indicator" class="scan-indicator hidden" role="status" aria-live="polite"> <span class="scan-dot" aria-hidden="true"></span> |
