diff options
-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; } |