Finish create run styles

This commit is contained in:
Ben Ramey
2014-04-07 22:15:45 -05:00
parent 29206122aa
commit 3678c9d9df
4 changed files with 66 additions and 18 deletions

View File

@@ -1,16 +1,16 @@
div.create-run-form(ng-controller='CreateRunCtrl')
form.container(name='form',novalidate,role='form')
h1.text-center
| start a new lunch run
div.interior.create-run-form(ng-controller='CreateRunCtrl')
include nav
h1
span.glyphicon.glyphicon-chevron-right
| start a new lunch run
form.interior-content(name='form',novalidate,role='form')
section.name
.bg  
.row
.col-xs-2.step-num
span.glyphicon.glyphicon-info-sign
.col-xs-10
input#name.form-control(type='text',ng-model='run.name',required,placeholder='Name your run')
section
.bg  
.row
.col-xs-2.step-num
span.glyphicon.glyphicon-user
@@ -18,7 +18,6 @@ div.create-run-form(ng-controller='CreateRunCtrl')
input#creatorName.form-control(type='text',ng-model='run.creatorName',required,placeholder='Your name')
input#creatorEmail.form-control(type='email',ng-model='run.creatorEmail',required,placeholder='Your email')
section
.bg  
.row
.col-xs-2.step-num
span.glyphicon.glyphicon-map-marker
@@ -27,12 +26,11 @@ div.create-run-form(ng-controller='CreateRunCtrl')
input#menuUrl.form-control(type='url',ng-model='run.menuUrl',placeholder='Menu URL')
section.invitees
.bg  
.row
.col-xs-2.step-num
span.glyphicon.glyphicon-list
.col-xs-10
.invitee(ng-repeat='i in run.invitees')
.invitee.clearfix(ng-repeat='i in run.invitees')
input.form-control(ng-model='i.name',required,placeholder='Name')
input.form-control(ng-model='i.email',required,placeholder='Email')
button.btn.btn-warning(ng-click='removeInvitee($index)')