.
This commit is contained in:
@@ -22,7 +22,7 @@ a, a:link {
|
|||||||
.answer-list .answer:hover{
|
.answer-list .answer:hover{
|
||||||
z-index: 99999;
|
z-index: 99999;
|
||||||
position: relative;
|
position: relative;
|
||||||
background: rgba(167, 167, 167, 0.7);
|
background: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.answer-list .correct {
|
.answer-list .correct {
|
||||||
@@ -34,6 +34,9 @@ a, a:link {
|
|||||||
content: " [Score = 2]";
|
content: " [Score = 2]";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
.answer-list .correct .rapid::after{
|
||||||
|
content: " [Score = 1]";
|
||||||
|
}
|
||||||
|
|
||||||
.answer-list .half-correct {
|
.answer-list .half-correct {
|
||||||
color: yellow;
|
color: yellow;
|
||||||
@@ -43,6 +46,9 @@ a, a:link {
|
|||||||
content: " [Score = 1]";
|
content: " [Score = 1]";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
.answer-list .half-correct .rapid::after{
|
||||||
|
content: " [Score = 0.5]";
|
||||||
|
}
|
||||||
|
|
||||||
.answer-list .incorrect {
|
.answer-list .incorrect {
|
||||||
color: red;
|
color: red;
|
||||||
@@ -52,6 +58,9 @@ a, a:link {
|
|||||||
content: " [Score = 0]";
|
content: " [Score = 0]";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
.answer-list .incorrect .rapid::after{
|
||||||
|
content: " [Score = 0]";
|
||||||
|
}
|
||||||
|
|
||||||
.answer-list .not-marked {
|
.answer-list .not-marked {
|
||||||
color: white;
|
color: white;
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities
|
|||||||
Click each answer to toggle through marks awarded (as per colour)
|
Click each answer to toggle through marks awarded (as per colour)
|
||||||
<div class="marking-list">
|
<div class="marking-list">
|
||||||
Unmarked:
|
Unmarked:
|
||||||
<ul id="new-answer-list" class="answer-list">
|
<ul id="new-answer-list" class="answer-list rapid">
|
||||||
{% for answer in user_answers %}
|
{% for answer in user_answers %}
|
||||||
<li>
|
<li>
|
||||||
<pre><span class="answer not-marked">{{ answer }}</span></pre>
|
<pre><span class="answer not-marked">{{ answer }}</span></pre>
|
||||||
@@ -30,7 +30,7 @@ Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
Marked:
|
Marked:
|
||||||
<ul id="marked-answer-list" class="answer-list">
|
<ul id="marked-answer-list" class="answer-list rapid">
|
||||||
{% for answer in correct_answers %}
|
{% for answer in correct_answers %}
|
||||||
<li>
|
<li>
|
||||||
<pre><span class="answer correct">{{ answer }}</span></pre>
|
<pre><span class="answer correct">{{ answer }}</span></pre>
|
||||||
@@ -47,7 +47,7 @@ Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities
|
|||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
<div class="answer-list key">Key: <span class="correct">2 Marks</span>, <span class="half-correct">1
|
<div class="answer-list key">Key: <span class="correct">1 Marks</span>, <span class="half-correct">0.5
|
||||||
Mark</span>, <span class="incorrect">0 Marks</span></div>
|
Mark</span>, <span class="incorrect">0 Marks</span></div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
+10
-1
@@ -22,7 +22,7 @@ a, a:link {
|
|||||||
.answer-list .answer:hover{
|
.answer-list .answer:hover{
|
||||||
z-index: 99999;
|
z-index: 99999;
|
||||||
position: relative;
|
position: relative;
|
||||||
background: rgba(167, 167, 167, 0.7);
|
background: black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.answer-list .correct {
|
.answer-list .correct {
|
||||||
@@ -34,6 +34,9 @@ a, a:link {
|
|||||||
content: " [Score = 2]";
|
content: " [Score = 2]";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
.answer-list .correct .rapid::after{
|
||||||
|
content: " [Score = 1]";
|
||||||
|
}
|
||||||
|
|
||||||
.answer-list .half-correct {
|
.answer-list .half-correct {
|
||||||
color: yellow;
|
color: yellow;
|
||||||
@@ -43,6 +46,9 @@ a, a:link {
|
|||||||
content: " [Score = 1]";
|
content: " [Score = 1]";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
.answer-list .half-correct .rapid::after{
|
||||||
|
content: " [Score = 0.5]";
|
||||||
|
}
|
||||||
|
|
||||||
.answer-list .incorrect {
|
.answer-list .incorrect {
|
||||||
color: red;
|
color: red;
|
||||||
@@ -52,6 +58,9 @@ a, a:link {
|
|||||||
content: " [Score = 0]";
|
content: " [Score = 0]";
|
||||||
font-size: small;
|
font-size: small;
|
||||||
}
|
}
|
||||||
|
.answer-list .incorrect .rapid::after{
|
||||||
|
content: " [Score = 0]";
|
||||||
|
}
|
||||||
|
|
||||||
.answer-list .not-marked {
|
.answer-list .not-marked {
|
||||||
color: white;
|
color: white;
|
||||||
|
|||||||
Reference in New Issue
Block a user