summaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorArun Isaac2022-03-14 09:20:27 +0530
committerArun Isaac2022-03-14 09:53:47 +0530
commit13d2053216a4ea09fee2ebfb5aa4c4e2d19d7c7e (patch)
tree8669c6440f1fb3726dce00d62da3df5e162c534d /style.css
parentbb01f5b625e25df0bb2ac519285774de82c00f10 (diff)
downloadgn-gemtext-13d2053216a4ea09fee2ebfb5aa4c4e2d19d7c7e.tar.gz
Publish issues to the web.
* build-web.scm, style.css: New files.
Diffstat (limited to 'style.css')
-rw-r--r--style.css52
1 files changed, 52 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..d6d9520
--- /dev/null
+++ b/style.css
@@ -0,0 +1,52 @@
+h2,h3,h4 {
+ font-family: Lucida Sans Typewriter, Lucida Console, monaco, Bitstream Vera Sans Mono, monospace;
+ color: darkblue;
+ background-color:#F0F8FF;
+}
+
+body {
+ font-family: Palatino, 'Palatino Linotype', serif;
+ color: black;
+ font-size: large;
+}
+
+.tag {
+ padding: 0.25em 0.4em;
+ color: white;
+ background-color: blue;
+ border-radius: 0.5em;
+ margin: auto 0.25em;
+ font-size: 0.75em;
+}
+
+.tag-bug {
+ background-color: red;
+}
+
+.tag-feature {
+ background-color: green;
+}
+
+.tag-progress {
+ background-color: orange;
+ color: black;
+}
+
+.tag-chore {
+ background-color: khaki;
+ color: black;
+}
+
+.issue-list-item {
+ list-style-type: none;
+}
+
+.issue-list-item a {
+ text-decoration: none;
+}
+
+.issue-list-item-metadata {
+ color: dimgray;
+ display: block;
+ font-size: small;
+}