aboutsummaryrefslogtreecommitdiff
path: root/static/index.css
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2025-11-13 14:56:02 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2025-11-13 14:56:02 +0100
commitc7b02f02ad0a7e2888f2d7d3599719e59bbd1ee2 (patch)
tree9f782daf2e2ff78559958f15e0b9ffe5ece78334 /static/index.css
parent7ee9d320e6ba9a84542d838892c43cf98b268552 (diff)
frontend: design prototype
Diffstat (limited to 'static/index.css')
-rw-r--r--static/index.css53
1 files changed, 53 insertions, 0 deletions
diff --git a/static/index.css b/static/index.css
new file mode 100644
index 0000000..dea1dd7
--- /dev/null
+++ b/static/index.css
@@ -0,0 +1,53 @@
+:host, :root {
+ --primary: #726eff;
+ --fg-primary: #fff;
+ --fg: #212b38;
+ --fg-disabled: #37465b;
+ --bg-label: #dedee8;
+ --border-radius: 4px;
+ --card-background: #fff;
+ --page-background: #dfdfdf;
+ --shadow: #223223aa 1px 1px 4px;
+}
+
+html, body {
+ margin: 0;
+ padding: 0;
+ width: 100%;
+ height: 100%;
+}
+
+body {
+ font-family: "Noto Sans", sans-serif;
+ color: var(--fg);
+}
+
+button {
+ font-family: "Noto Sans", sans-serif;
+ background: var(--primary);
+ color: var(--fg-primary);
+ padding: 10px;
+ border: none;
+ border-radius: var(--border-radius);
+ font-weight: bold;
+ cursor: pointer;
+}
+
+input {
+ font-family: "Noto Sans", sans-serif;
+ color: var(--fg);
+ padding: 10px;
+ border: none;
+ outline: none;
+ background: var(--bg-label);
+ border-radius: var(--border-radius);
+}
+
+* {
+ box-sizing: border-box;
+}
+
+.icon svg {
+ width: 100%;
+ height: 100%;
+}