improving physics / sba exams

This commit is contained in:
Ross
2023-12-11 13:57:02 +00:00
parent 66ce7b42ac
commit 472fe6ee96
13 changed files with 280 additions and 231 deletions
+52 -3
View File
@@ -73,7 +73,8 @@ a:link {
font-size: 20;
}
.hide, .hidden {
.hide,
.hidden {
display: none;
}
@@ -83,7 +84,12 @@ a:link {
}
.unanswered {
color: gray;
color: darkred;
border-color: darkred;
}
.unanswered:hover {
background-color: rgb(166, 0, 0);
}
#question-list {
@@ -1057,7 +1063,50 @@ table .peninsula-trainee::before {
user-select: none;
}
.form-control, .form-control:focus, .form-control option {
.form-control,
.form-control:focus,
.form-control option {
background-color: unset;
color: unset
}
#clockdiv {
font-family: sans-serif;
display: inline-block;
font-weight: 100;
text-align: center;
font-size: 12px;
display: none;
color: darkgray;
}
#clockdiv>div {
padding: 1px;
border-radius: 3px;
display: inline-block;
}
#clockdiv div>span.num {
color: white;
padding: 1px;
border-radius: 3px;
display: inline-block;
}
#timeup {
display: none;
color: red;
font-weight: 100;
text-align: center;
font-size: 12px;
}
#time-details {
opacity: 50%;
font-size: small;
}
.current-question {
background-color: #52057b;
color: grey;
}
+1 -1
View File
@@ -245,7 +245,7 @@ def cid_scores(request, cid, passcode):
case_collections = cid_user.casecollection_exams.all()
available_exams = cid_user.get_cid_exams()
available_exams = cid_user.get_cid_exams(include_case_collections=False)
return render(
request,