diff options
author | Ben Burwell <ben@benburwell.com> | 2019-08-10 14:02:00 -0400 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2019-08-10 14:22:58 -0400 |
commit | b95713a03e1f82868f5db81fb264c23496641cad (patch) | |
tree | 550ec1551e45d73f13876ec1cfe3716215733c13 /assets/h4xx0r.css | |
parent | 79a14b5fa3970deda7235e3d38ffd591a75a88a3 (diff) |
Add alternate themes
Diffstat (limited to 'assets/h4xx0r.css')
-rw-r--r-- | assets/h4xx0r.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/assets/h4xx0r.css b/assets/h4xx0r.css new file mode 100644 index 0000000..61a7204 --- /dev/null +++ b/assets/h4xx0r.css @@ -0,0 +1,21 @@ +html { + --dark: #1c1c1c; + --light: #888; + --green: #0c0; + background-color: var(--dark); +} + +body { + color: var(--light); + font-family: monospace; +} + +a { + color: var(--green); + text-decoration: none; +} + +a:hover { + color: var(--dark); + background-color: var(--green); +} |