Files
edx-platform/sass/_textbook.scss
Kyle Fiedler f2a748e4a6 Added some style for video sequence made topbar extend better
--HG--
branch : kf-video-layout
2012-01-26 14:54:00 -05:00

55 lines
886 B
SCSS

div.book-wrapper {
@extend .table-wrapper;
ul#booknav {
@extend .sidebar;
@include box-sizing(border-box);
padding: lh();
li {
ul {
background: none;
}
}
}
section.book {
@extend .content;
nav {
@extend .topbar;
@extend .clearfix;
ul {
@extend .clearfix;
li {
&.last {
float: left;
display: block;
a {
@include box-shadow(inset -1px 0 0 lighten(#f6efd4, 5%));
border-right: 1px solid darken(#f6efd4, 20%);
border-left: 0;
}
}
&.next {
display: block;
float: right;
}
}
}
}
section.page {
img {
border: 1px solid $border-color;
max-width: 100%;
min-width: 100%;
}
}
}
}