Files
edx-platform/sass/_textbook.scss
Kyle Fiedler 741d174189 Added structure and style for most of the wiki
--HG--
branch : kf-wiki
2012-01-11 11:33:18 -05:00

49 lines
728 B
SCSS

div.book-wrapper {
display: table;
ul#booknav {
@extend .sidebar;
@include box-sizing(border-box);
padding: $body-line-height;
li {
ul {
background: none;
}
}
}
section.book {
@include box-sizing(border-box);
padding: $body-line-height;
vertical-align: top;
width: grid-width(9) + $gw-gutter;
display: table-cell;
nav {
@extend .topbar;
ul {
@extend .clearfix;
li {
padding: 15px;
&.last {
float: left;
}
&.next {
float: right;
}
}
}
}
section.page {
img {
border: 1px solid $border-color;
}
}
}
}