diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-04-15 11:24:19 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-04-15 11:24:19 +0100 |
commit | aa96b3e12cf4c1c146e9a5a5504051b0ef201275 (patch) | |
tree | 77e695a8f9a2d7537b565dab3fe51d975d2f6c8d /ctrack/static/css/project.css | |
parent | efb2e28fc07a57e7309fe67e051f580317be7493 (diff) |
background colours in assessment score boxes
Diffstat (limited to 'ctrack/static/css/project.css')
-rw-r--r-- | ctrack/static/css/project.css | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/ctrack/static/css/project.css b/ctrack/static/css/project.css index 33c1c4f..fe3d2d4 100644 --- a/ctrack/static/css/project.css +++ b/ctrack/static/css/project.css @@ -28,6 +28,18 @@ line-height: 15px; min-height: 10px; } +#partially-achieved-cell { + background-color: #f79400; + color: white; } + +#achieved-cell { + background-color: green; + color: white; } + +#not-achieved-cell { + background-color: red; + color: white; } + .textinput { background-color: lightgoldenrodyellow; box-shadow: 2px 10px 15px lightgray; |