From 715f668b1f76f52845e04c5a3fcc8fcf87cce323 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Mon, 11 Feb 2013 17:41:41 +0000 Subject: [PATCH] Add examples. --- README.md | 51 +++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 47 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8a15fa3..2d3d81f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Julep -SASS/SCSS mixins for building mobile web applications. +SASS/SCSS mixins for building mobile web applications. Designed to keep your markup clean and semantic and free of cruft. ## Requirements @@ -16,9 +16,52 @@ SASS/SCSS mixins for building mobile web applications. Simply include the appropriate mixin in your stylesheet. E.g. - header { - @include header($color); - } +### Header + +```html +
+

App Name

+
+``` + +```css +header { + @include header($color); +} +``` + +### Tab Bar + +```html + +``` + +```css +footer { + @include tabbar; +} +``` + +### Lists + +```html + +``` + +```css +ul { + @include list; +} +``` ## Contributing