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