diff options
Diffstat (limited to 'static')
-rw-r--r-- | static/styles.css | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/static/styles.css b/static/styles.css index 91f6f98..db2e5ad 100644 --- a/static/styles.css +++ b/static/styles.css @@ -55,17 +55,29 @@ div#quote { font-weight: bold; } -span.waste-refuse { +.waste-refuse { color: white; background-color: black; } -span.waste-recycling { +.waste-recycling { color: white; background-color: darkgreen; } -span.waste-garden { +.waste-garden { color: white; background-color: saddlebrown; } + +table.waste-table { + border-collapse: collapse; + td.morning { + border: 2px solid black; + border-right: none; + } + td.evening { + border: 2px solid black; + border-left: none; + } +} |