little css

This commit is contained in:
2013-02-14 08:18:17 -05:00
parent e96147b7ff
commit b603f2404c
73 changed files with 6191 additions and 24 deletions

View File

@@ -2,21 +2,30 @@ h1 New workout
div#filters
h3 Filters
label Search
input#searchbox (type="text", placeholder="Type here....")
label Free Weights
input.filter(type="checkbox", checked=true, value="Free Weights")
label Bodyweight
input.filter(type="checkbox", checked=true, value="Bodyweight")
label Exercise Machines
input.filter(type="checkbox", checked=true, value='Exercise Machine')
label Kettlebells
input.filter(type="checkbox", checked=true, value='Kettlebells')
label Cardio
input.filter(type="checkbox", checked=true, value='Cardio')
div
object(data='/images/BlankBody.svg', id='BlankBodyFilter', type='image/svg+xml')
div.floatleftx
label Search
input#searchbox (type="text", placeholder="Type here....")
span(class="SVGBODYFilter floatleft")
span.floatleft
ul
li.labelli
label Free Weights
input.filter(type="checkbox", checked=true, value="Free Weights")
li.labelli
label Bodyweight
input.filter(type="checkbox", checked=true, value="Bodyweight")
li.labelli
label Exercise Machines
input.filter(type="checkbox", checked=true, value='Exercise Machine')
li.labelli
label Kettlebells
input.filter(type="checkbox", checked=true, value='Kettlebells')
li.labelli
label Cardio
input.filter(type="checkbox", checked=true, value='Cardio')
h3 Exercises (dynamically loaded from database)
ul#exerciselist
li Unpopulated
div.floatleft
h3 Exercises (dynamically loaded from database)
ul#exerciselist
li Unpopulated

View File

@@ -9,6 +9,7 @@ h3 Recent workouts:
ol
each split in element.splits
li Reps: #{split.reps} Weight: #{split.weight}
span(class="floatleft")
include ../../public/images/BlankBody.svg
span(class="floatleft SVGBODY")
//include ../../public/images/BlankBody.svg
span(class="clearright")
- });