summaryrefslogtreecommitdiff
path: root/docs/handbook.css
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--docs/handbook.css17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/handbook.css b/docs/handbook.css
new file mode 100644
index 0000000..c8b0715
--- /dev/null
+++ b/docs/handbook.css
@@ -0,0 +1,17 @@
+:root {
+ --theme: #0062cc;
+ --anchor-underline-color: lightgray;
+}
+
+html {
+ font-family: system-ui, sans-serif;
+ padding: 0rem 10px;
+ margin: auto;
+ max-width: 40rem;
+}
+
+a {
+ color: var(--theme);
+ text-decoration: underline;
+ text-decoration-color: var(--anchor-underline-color);
+}