This commit is contained in:
Ross
2021-08-17 18:21:26 +01:00
parent 42f8708e4c
commit ba28ce46cc
3 changed files with 22 additions and 6 deletions
+10 -2
View File
@@ -537,10 +537,18 @@ td.user-answer-score-2::after {
display: flex;
}
.exam-list li .flex-col, #full-question-list li .flex-col {
.flex-col {
flex: 1;
}
#full-question-list li .flex-col-4 {
.flex-col-2 {
flex: 2;
}
.flex-col-3 {
flex: 3;
}
.flex-col-4 {
flex: 4;
}
+2 -2
View File
@@ -29,7 +29,7 @@
{% for question in questions.all %}
<li data-question_pk={{question.pk}}>
<span>
<span class="flex-col-2">
Description: {{ question.description}}
<br />
History: {{ question.history}}
@@ -44,7 +44,7 @@
</div>
</span>
{% for series in question.series.all %}
<div class="series-block">
<div class="series-block flex-col-3">
Series {{forloop.counter }}:<br />
{{series.get_block}}
</div>
+10 -2
View File
@@ -537,10 +537,18 @@ td.user-answer-score-2::after {
display: flex;
}
.exam-list li .flex-col, #full-question-list li .flex-col {
.flex-col {
flex: 1;
}
#full-question-list li .flex-col-4 {
.flex-col-2 {
flex: 2;
}
.flex-col-3 {
flex: 3;
}
.flex-col-4 {
flex: 4;
}