summaryrefslogtreecommitdiff
path: root/wwwroot
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2023-08-08 13:20:21 +1000
committerJake Mannens <jake@asger.xyz>2023-08-08 13:20:21 +1000
commit701d474949e5cb72b8ed7b29fec45ad74580f570 (patch)
tree0eea7adfdd9d7dde4dd44535cd172d7e6a4f8737 /wwwroot
Initial commit
Diffstat (limited to 'wwwroot')
-rw-r--r--wwwroot/styles/global.css24
1 files changed, 24 insertions, 0 deletions
diff --git a/wwwroot/styles/global.css b/wwwroot/styles/global.css
new file mode 100644
index 0000000..6c6e6f1
--- /dev/null
+++ b/wwwroot/styles/global.css
@@ -0,0 +1,24 @@
+:root {
+ --col-bg: #222;
+ --col-navbar-bg: magenta;
+}
+
+body {
+ margin: 0;
+ background: var(--col-bg);
+ color: white;
+ font-family: 'Trebuchet MS', 'Lucida Sans Unicode';
+}
+
+a {
+ color: white;
+ text-decoration: none;
+}
+
+input {
+ color: white;
+ box-sizing: border-box;
+ border: 1px solid #aaa;
+ background: rgba(0, 0, 0, 0.3);
+ border-radius: 5px;
+} \ No newline at end of file