29 lines
616 B
SCSS
29 lines
616 B
SCSS
/*
|
|
Crafting Guide - recipe_books.scss
|
|
|
|
Copyright (c) 2014 by Redwood Labs
|
|
All rights reserved.
|
|
*/
|
|
|
|
.view__recipe_books {
|
|
position: relative; width: 100%;
|
|
padding: 0 2em;
|
|
|
|
button {
|
|
@include center-vertical;
|
|
position: absolute; right: 1em;
|
|
}
|
|
|
|
input { border: 0; width: 90%; }
|
|
|
|
table {
|
|
background: white;
|
|
margin: 0 auto;
|
|
width: 98%;
|
|
|
|
td { height: 3em; padding: 0 1em; position: relative; vertical-align: middle; }
|
|
td:nth-child(1) { width: 30%; }
|
|
td:nth-child(2) { width: 70%; border-left: 0.1em solid $color-brick-light; }
|
|
}
|
|
}
|