From e2f4a0692c88896d75a0e3ec270b1a5c23dd5637 Mon Sep 17 00:00:00 2001 From: Gregory Wells Date: Tue, 31 Mar 2026 20:53:08 -0400 Subject: [PATCH] change default style for buttons --- static/login_page.css | 14 -------------- static/style.css | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/static/login_page.css b/static/login_page.css index ac17278..bdb17cb 100644 --- a/static/login_page.css +++ b/static/login_page.css @@ -31,16 +31,6 @@ color: var(--text-muted); } -#login_card button { - padding: 12px; - background-color: var(--primary-accent); /* Our Teal/Blue */ - color: white; - border: none; - border-radius: 6px; - cursor: pointer; - font-weight: bold; -} - #login_card div { width: 100%; } @@ -59,10 +49,6 @@ flex: 2; } -#login_card button:hover { - background-color: var(--primary-hover); -} - .login_text { color: var(--text-muted); margin: 0; diff --git a/static/style.css b/static/style.css index f3151e6..df45ab4 100644 --- a/static/style.css +++ b/static/style.css @@ -24,6 +24,20 @@ body { background-color: var(--bg-main); } +button { + padding: 12px; + background-color: var(--primary-accent); /* Our Teal/Blue */ + color: white; + border: none; + border-radius: 6px; + cursor: pointer; + font-weight: bold; +} + +button:hover { + background-color: var(--primary-hover); +} + .hidden { display: none; }