From d1e59579ca19454369d56a8c7525e109a86841e2 Mon Sep 17 00:00:00 2001 From: fschildt Date: Fri, 17 Oct 2025 14:00:16 +0200 Subject: first commit --- apps/accounts/static/accounts/login.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 apps/accounts/static/accounts/login.css (limited to 'apps/accounts/static') diff --git a/apps/accounts/static/accounts/login.css b/apps/accounts/static/accounts/login.css new file mode 100644 index 0000000..252e026 --- /dev/null +++ b/apps/accounts/static/accounts/login.css @@ -0,0 +1,23 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +html { + font-size: 16px; +} + +:root { + --bg-default: #2e2e2e; + --bg-action: #923737; + --bg-pause: #416e46; +} + +body { + background-color: var(--bg-default); + font-family: 'Segoe UI', 'Roboto', sans-serif; + color: #e8e6e3; + transition: background-color 0.3s ease; +} + -- cgit v1.2.3