Vastly improved design

This commit is contained in:
Dan Brown
2015-07-15 22:55:49 +01:00
parent c4d0f38a67
commit 46217a5880
24 changed files with 439 additions and 140 deletions

View File

@ -45,3 +45,40 @@ input[type="text"], input[type="number"], input[type="email"], input[type="searc
.form-group {
margin-bottom: $-s;
}
.inline-input-style {
border: 2px dotted #BBB;
display: block;
width: 100%;
padding: $-xs $-s;
}
.title-input label, .description-input label{
margin-top: $-m;
color: #666;
}
.title-input input[type="text"] {
@extend h1;
@extend .inline-input-style;
margin-top: 0;
color: #444;
}
.title-input.page-title {
padding: $-s;
}
.title-input.page-title input[type="text"]{
//border: 2px dotted #BBB;
margin-bottom: 0;
}
.edit-area {
padding: 0 $-s $-s $-s;
}
.description-input textarea {
@extend .inline-input-style;
font-size: $fs-m;
color: #666;
width: 100%;
}