From 4756dab75c0eb3a2255dced9058d4ee7b6efc9ee Mon Sep 17 00:00:00 2001 From: Christine Dodrill Date: Sun, 2 Jun 2019 22:55:46 -0400 Subject: cmd/within.website: start on info page --- cmd/within.website/static/gruvbox.css | 60 +++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 cmd/within.website/static/gruvbox.css (limited to 'cmd/within.website/static') 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; + } +} -- cgit v1.2.3