summaryrefslogtreecommitdiff
path: root/client/style.css
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-10-23 00:20:35 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-10-23 00:20:35 +0200
commitbb8ef2203469e949700499499e101354dfb1fe1f (patch)
treea9f68f89fd84a6ce6a5c04e558cc962d520604b6 /client/style.css
parent2d7b7c84cd843b75ca7131549f99d0671dfe3268 (diff)
client: Add very basic client
Diffstat (limited to 'client/style.css')
-rw-r--r--client/style.css44
1 files changed, 44 insertions, 0 deletions
diff --git a/client/style.css b/client/style.css
new file mode 100644
index 0000000..ab72550
--- /dev/null
+++ b/client/style.css
@@ -0,0 +1,44 @@
+@font-face {
+ font-family: 'Material Symbols Outlined';
+ font-style: normal;
+ src: url(material-symbols-outlined.woff2) format('woff2');
+}
+
+.material-symbols-outlined {
+ /* eslint-disable-next-line css/font-family-fallbacks */
+ font-family: 'Material Symbols Outlined';
+ font-weight: normal;
+ font-style: normal;
+ font-size: 24px;
+ display: inline-block;
+ line-height: 1;
+ text-transform: none;
+ letter-spacing: normal;
+ word-wrap: normal;
+ white-space: nowrap;
+ direction: ltr;
+}
+
+:root {
+ color-scheme: light dark;
+}
+
+body {
+ background-color: light-dark(#eee, #333);
+ color: light-dark(#333, #eee);
+ font-family: sans-serif;
+}
+
+button {
+ background-color: light-dark(#ccc, #555);
+ font-size: 175%;
+}
+
+.invisible {
+ display: none;
+}
+
+#error {
+ color: red;
+ font-size: 250%;
+}