aboutsummaryrefslogtreecommitdiff
path: root/cmd/within.website/static/gruvbox.css
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/within.website/static/gruvbox.css')
-rw-r--r--cmd/within.website/static/gruvbox.css60
1 files changed, 60 insertions, 0 deletions
diff --git a/cmd/within.website/static/gruvbox.css b/cmd/within.website/static/gruvbox.css
new file mode 100644
index 0000000..43c1ba0
--- /dev/null
+++ b/cmd/within.website/static/gruvbox.css
@@ -0,0 +1,60 @@
+main {
+ font-family: Arial, Helvetica, sans-serif;
+ max-width: 38rem;
+ padding: 2rem;
+ margin: auto;
+}
+
+body {
+ background: #282828;
+ color: #ebdbb2;
+}
+
+pre {
+ background-color: #3c3836;
+ padding: 1em;
+ border: 0;
+}
+
+a, a:active, a:visited {
+ color: #b16286;
+ background-color: #1d2021;
+}
+
+h1, h2, h3, h4, h5 {
+ margin-bottom: .1rem;
+}
+
+blockquote {
+ border-left: 1px solid #bdae93;
+ margin: 0.5em 10px;
+ padding: 0.5em 10px;
+}
+
+@media (prefers-color-scheme: light) {
+ body {
+ background: #fbf1c7;
+ color: #3c3836;
+ }
+
+ pre {
+ background-color: #ebdbb2;
+ padding: 1em;
+ border: 0;
+ }
+
+ a, a:active, a:visited {
+ color: #b16286;
+ background-color: #f9f5d7;
+ }
+
+ h1, h2, h3, h4, h5 {
+ margin-bottom: .1rem;
+ }
+
+ blockquote {
+ border-left: 1px solid #655c54;
+ margin: 0.5em 10px;
+ padding: 0.5em 10px;
+ }
+}