Rubric sizing tweaks and text improvements.

This commit is contained in:
Diana Huang
2013-01-17 14:35:49 -05:00
parent 7171e6b7cc
commit 87990b36f4
3 changed files with 8 additions and 8 deletions

View File

@@ -152,6 +152,7 @@ div.result-container {
font-family: monospace;
font-size: 1em;
padding-top: 10px;
padding-bottom:30px;
header {
font-size: 1.4em;
}
@@ -237,7 +238,7 @@ div.result-container, section.open-ended-child {
height: 100%;
}
td {
padding: 20px 0px;
padding: 20px 0px 25px 0px;
margin: 10px 0px;
height: 100%;
}
@@ -249,7 +250,7 @@ div.result-container, section.open-ended-child {
.view-only {
margin:2px;
position: relative;
padding: 15px 15px 25px 15px;
padding: 10px 15px 25px 15px;
width: 145px;
height:100%;
display: inline-block;

View File

@@ -124,7 +124,7 @@ div.peer-grading{
margin: 0px;
background: #eee;
height: 10em;
width:48%;
width:47.6%;
h3
{
text-align:center;
@@ -182,8 +182,7 @@ div.peer-grading{
height: 100%;
}
td {
padding: 20px 0px;
margin: 10px 0px;
padding: 20px 0px 25px 0px;
height: 100%;
}
th {
@@ -201,7 +200,7 @@ div.peer-grading{
min-height: 50px;
min-width: 50px;
background-color: #CCC;
font-size: .85em;
font-size: .9em;
}
.grade {
position: absolute;

View File

@@ -10,9 +10,9 @@
% if state == 'initial':
<span class="unanswered" style="display:inline-block;" id="status_${id}">Unanswered</span>
% elif state in ['done', 'post_assessment'] and correct == 'correct':
<span class="correct" id="status_${id}">Correct</span> <p>Correct</p>
<span class="correct" id="status_${id}"></span> <p>Correct</p>
% elif state in ['done', 'post_assessment'] and correct == 'incorrect':
<span class="incorrect" id="status_${id}">Incorrect</span> <p>This submission has been assessed as incorrect. </p>
<span class="incorrect" id="status_${id}"></span> <p>This submission has been assessed as incorrect. </p>
% elif state == 'assessing':
<span class="grading" id="status_${id}">Submitted for grading</span>
% endif