From 95a2557729badfee8d8cf646713c5dff5db88ece Mon Sep 17 00:00:00 2001 From: Reimar Date: Sat, 11 Oct 2025 22:43:09 +0200 Subject: [PATCH] fix project name css --- style.css | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/style.css b/style.css index 3e446dc..752fba7 100644 --- a/style.css +++ b/style.css @@ -341,3 +341,20 @@ footer { #sprite-editor-preview-snippet:empty { display: none; } + +#project-name { + background-color: inherit; + border: none; + font-size: 1.5rem; + font-weight: bold; + border-bottom: 1px solid #bdbdbd; + transition: border-color 200ms ease-in-out; +} + +#project-name:hover, #project-name:active { + border-color: white; +} + +#project-name:focus { + outline: none; +}