2016-01-12 18:43:00 -06:00
|
|
|
// Place all the styles related to the recipes controller here.
|
|
|
|
// They will automatically be included in application.css.
|
|
|
|
// You can use Sass (SCSS) here: http://sass-lang.com/
|
2016-01-13 17:10:43 -06:00
|
|
|
|
|
|
|
@mixin editor {
|
|
|
|
border: solid 1px grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.ingredient-editor {
|
|
|
|
@include editor;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.step-editor {
|
|
|
|
@include editor;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#ingredient-list, div#step-list {
|
|
|
|
padding-bottom: 15px;
|
|
|
|
}
|