Files
edx-platform/sass/_profile.scss
2012-01-26 12:59:26 -05:00

29 lines
567 B
SCSS

div.profile-wrapper {
@extend .table-wrapper;
section.user-info {
@include box-sizing(border-box);
margin-right: flex-gutter();
padding: $body-line-height;
width: flex-grid(6);
background: #e3e3e3;
border-right: 1px solid #d3d3d3;
text-shadow: 0 1px 0 #f6f6f6;
display: table-cell;
}
section.course-info {
@include box-sizing(border-box);
display: table-cell;
padding: $body-line-height;
width: flex-grid(6);
ul {
li {
display: inline-block;
padding-right: 1em;
}
}
}
}