70 lines
1.3 KiB
SCSS
70 lines
1.3 KiB
SCSS
div.book-wrapper {
|
|
display: table;
|
|
|
|
ul#booknav {
|
|
@include box-shadow( inset -1px 0 0 #f6f6f6);
|
|
@include box-sizing(border-box);
|
|
background: #e3e3e3;
|
|
border-right: 1px solid #d3d3d3;
|
|
font-family: $body-font-family;
|
|
padding: $body-line-height;
|
|
text-shadow: 0 1px 0 #f6f6f6;
|
|
vertical-align: top;
|
|
width: grid-width(3);
|
|
min-width: 240px;
|
|
display: table-cell;
|
|
|
|
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 {
|
|
background: #F6EFD4;
|
|
border-bottom: 1px solid darken(#F6EFD4, 10%);
|
|
margin: (-$body-line-height) (-$body-line-height) $body-line-height;
|
|
|
|
ul {
|
|
@extend .clearfix;
|
|
li {
|
|
padding: 15px;
|
|
|
|
&.last {
|
|
float: left;
|
|
}
|
|
|
|
&.next {
|
|
float: right;
|
|
}
|
|
|
|
a {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
color: darken(#F6EFD4, 80%);
|
|
text-shadow: 0 1px 0 #fff;
|
|
|
|
&:hover {
|
|
color: darken(#F6EFD4, 60%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
section.page {
|
|
img {
|
|
border: 1px solid $border-color;
|
|
}
|
|
}
|
|
}
|
|
}
|