57 lines
925 B
SCSS
57 lines
925 B
SCSS
.rubric {
|
|
margin: 0px 0px;
|
|
color: #3C3C3C;
|
|
tr {
|
|
margin:0px 0px;
|
|
height: 100%;
|
|
}
|
|
td {
|
|
height: 100%;
|
|
border: 1px black solid;
|
|
text-align: center;
|
|
}
|
|
th {
|
|
padding: 5px;
|
|
margin: 5px;
|
|
text-align: center;
|
|
}
|
|
.points-header th {
|
|
padding: 0px;
|
|
}
|
|
.rubric-label
|
|
{
|
|
position: relative;
|
|
font-size: .9em;
|
|
display: block;
|
|
}
|
|
.grade {
|
|
position: absolute;
|
|
bottom:0px;
|
|
right:0px;
|
|
}
|
|
.selected-grade,
|
|
.selected-grade .rubric-label {
|
|
background: #666;
|
|
color: white;
|
|
}
|
|
input[type=radio]:checked + .rubric-label {
|
|
background: white;
|
|
color: $base-font-color;
|
|
white-space:nowrap;
|
|
}
|
|
.wrappable {
|
|
white-space:normal;
|
|
}
|
|
input[class='score-selection'] {
|
|
position: relative;
|
|
font-size: 16px;
|
|
}
|
|
ul.rubric-list
|
|
{
|
|
list-style-type: none;
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
}
|
|
|