diff options
| author | Christine Dodrill <me@christine.website> | 2019-06-02 22:55:46 -0400 |
|---|---|---|
| committer | Christine Dodrill <me@christine.website> | 2019-06-02 22:55:46 -0400 |
| commit | 4756dab75c0eb3a2255dced9058d4ee7b6efc9ee (patch) | |
| tree | 92a468076ccd2eac9eead54fd44c9af16b5589f1 /cmd/within.website/static | |
| parent | 3338d3e7fcf985a68f44f29b1c25215b0d42cdb7 (diff) | |
| download | x-4756dab75c0eb3a2255dced9058d4ee7b6efc9ee.tar.xz x-4756dab75c0eb3a2255dced9058d4ee7b6efc9ee.zip | |
cmd/within.website: start on info page
Diffstat (limited to 'cmd/within.website/static')
| -rw-r--r-- | cmd/within.website/static/gruvbox.css | 60 |
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; + } +} |
