diff options
author | Nat Lasseter <user@4574.co.uk> | 2025-03-10 20:29:37 +0000 |
---|---|---|
committer | Nat Lasseter <user@4574.co.uk> | 2025-03-10 20:29:37 +0000 |
commit | 29802b71af3de0c62a8b6aa37bb32e96dc4ff899 (patch) | |
tree | 5e512d4483b15a5f89c1f589b956967216a2cd78 | |
parent | 915e074cc4b05afcc7177e7928b37c8fb5290ba7 (diff) |
fix waste colours
-rw-r--r-- | cgi/home.cgi | 2 | ||||
-rw-r--r-- | static/styles.css | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cgi/home.cgi b/cgi/home.cgi index 5b2bec3..c569055 100644 --- a/cgi/home.cgi +++ b/cgi/home.cgi @@ -28,7 +28,7 @@ def next_collection tout = "" tout += "Then " unless out.empty? tout += case coll["service"] - when "REFUSE"; $cgi.span(class: "waste-refuse") {"General Domestic Waste"} + when "REFUSE"; $cgi.span(class: "waste-refuse") { "General Domestic Waste" } when "RECYCLING"; $cgi.span(class: "waste-recycling") { "Recycling" } when "GARDEN"; $cgi.span(class: "waste-garden") { "Garden Waste" } end diff --git a/static/styles.css b/static/styles.css index cf2c9b5..a15f136 100644 --- a/static/styles.css +++ b/static/styles.css @@ -61,7 +61,7 @@ span.waste-recycling { background-color: darkgreen; } -span.waste-refuse { +span.waste-garden { color: white; background-color: saddlebrown; } |