Files
edx-platform/lms/static/sass/course/_open_ended_grading.scss
2013-01-29 21:24:03 -05:00

56 lines
1021 B
SCSS

.open-ended-problems,
.combined-notifications
{
padding: 40px;
.problem-list
{
table-layout: auto;
margin-top: 10px;
width:70%;
text-align: center;
td, th
{
padding: 7px;
}
}
.notification-container
{
margin: 30px 0px;
}
.alert
{
background-color: red;
}
.notification
{
margin: 10px;
width: 30%;
@include inline-block;
vertical-align: top;
.notification-link
{
display:block;
height: 8em;
padding: 10px;
border: 1px solid black;
text-align: center;
}
.notification-title
{
text-transform: uppercase;
}
.notification-link:hover
{
background-color: #eee;
color: black;
}
.notification-description
{
padding-top:5%;
}
@include clearfix;
}
}