diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 |
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 |
| commit | d1e59579ca19454369d56a8c7525e109a86841e2 (patch) | |
| tree | 695f348acca3a32c97512685384da818a3ba5195 /apps/accounts/static | |
first commit
Diffstat (limited to 'apps/accounts/static')
| -rw-r--r-- | apps/accounts/static/accounts/login.css | 23 |
1 files changed, 23 insertions, 0 deletions
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; +} + |
