diff --git a/anatomy/static/css/anatomy.css b/anatomy/static/css/anatomy.css index 784dfb7a..c35febea 100644 --- a/anatomy/static/css/anatomy.css +++ b/anatomy/static/css/anatomy.css @@ -363,6 +363,15 @@ img.uploading { color: lightblue; } +.user-answer-score-1 { + color: lightblue; +} + +.user-answer-score-0\.5 { + /* color: green; */ + color: yellow; +} + .physics-ans .user-answer-score-1 { color: lightblue; } diff --git a/rapids/templates/rapids/exam_scores.html b/rapids/templates/rapids/exam_scores.html index c92f5c1e..ddaa255e 100644 --- a/rapids/templates/rapids/exam_scores.html +++ b/rapids/templates/rapids/exam_scores.html @@ -51,7 +51,7 @@ Question {{forloop.counter}} {% for ans, score in by_question|get_item:question %} - {{ans}} + {{ans}} {% endfor %} {% endfor %} diff --git a/static/css/anatomy.css b/static/css/anatomy.css index a5678a2f..c35febea 100644 --- a/static/css/anatomy.css +++ b/static/css/anatomy.css @@ -208,7 +208,8 @@ button a { #full-question-list li::before{ counter-increment: question-list; - content: counter(question-list) ": "; + content: counter(question-list) " "; + padding-right: 0.5em; } #full-question-list img{ @@ -362,6 +363,15 @@ img.uploading { color: lightblue; } +.user-answer-score-1 { + color: lightblue; +} + +.user-answer-score-0\.5 { + /* color: green; */ + color: yellow; +} + .physics-ans .user-answer-score-1 { color: lightblue; }