Files
edx-platform/sass/_profile.scss
Kyle Fiedler 170f81a487 More style for the textbook page and various style fixes
--HG--
branch : kf-refactor
2012-01-06 13:19:57 -05:00

29 lines
558 B
SCSS

div.profile-wrapper {
display: table;
section.user-info {
@include box-sizing(border-box);
margin-right: $gw-gutter;
padding: $body-line-height;
width: grid-width(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);
padding: $body-line-height;
width: grid-width(6);
display: table-cell;
ul {
li {
display: inline-block;
padding-right: 1em;
}
}
}
}