From fb26a9265d8836a012c1a2fb0c92e8bfd3bf003d Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 25 May 2025 00:19:50 +0200 Subject: [PATCH] Update styling and structure of settings.html --- settings.html | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/settings.html b/settings.html index 5d65887..8843e3c 100644 --- a/settings.html +++ b/settings.html @@ -82,10 +82,33 @@ } /* Buttons */ - button { - padding: 5px, 5px, 3px, 3px; + .buttons { + display: flex; justify-content: flex-end; gap: 1rem; + margin-top: 1.4rem; + } + button.action { + padding: 0.5em 1.3em; + font-size: 1rem; + font-weight: 600; + border: none; border-radius: 6px; + cursor: pointer; + transition: background 0.2s; + } + #cancelBtn { + background: #e2e8f0; + color: #475569; + } + #cancelBtn:hover { + background: #cbd5e1; + color: #1e293b; + } + #okBtn { + background: #38bdf8; + color: #fff; + } + #okBtn:hover { + background: #0ea5e9; } - /* Infotext */ .ollama-info {