summaryrefslogtreecommitdiff
path: root/apps/accounts/static
diff options
context:
space:
mode:
Diffstat (limited to 'apps/accounts/static')
-rw-r--r--apps/accounts/static/accounts/login.css23
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;
+}
+