aboutsummaryrefslogtreecommitdiffstats
path: root/src/acit
diff options
context:
space:
mode:
Diffstat (limited to 'src/acit')
-rw-r--r--src/acit/html.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/acit/html.py b/src/acit/html.py
index 0ec7eb9..2827a4a 100644
--- a/src/acit/html.py
+++ b/src/acit/html.py
@@ -45,3 +45,26 @@ notfound="""
</body>
</html>
"""
+style_css="""
+
+:root {
+ --primary-background: #fcfcfc;
+ --secondary-background: #eee;
+ --tertiary-background: #acacac;
+}
+
+
+.path {
+ background-color: var(--tertiary-background);
+}
+
+.email {
+ font-family: monospace;
+ font-size: 1em;
+ background-color: var(--secondary-background);
+ padding: 1px;
+ padding-left: 2em;
+ padding-right: 2em;
+}
+
+"""