From 83bbd773ac9ec1f77d3c986066ca9285cae37b5f Mon Sep 17 00:00:00 2001 From: Tyler Hallada Date: Fri, 11 Jul 2014 18:29:59 -0400 Subject: [PATCH] Remove broken markdown number list --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 5d3dfe0..f838a0c 100644 --- a/README.md +++ b/README.md @@ -10,13 +10,13 @@ system out of it. As an introduction to this system: -1. Wrap everything in a div element with the `container` class. +Wrap everything in a div element with the `container` class. ```html
``` -2. To create rows add div elements with the `row` and `clearfix` classes. +To create rows add div elements with the `row` and `clearfix` classes. ```html
@@ -24,7 +24,7 @@ As an introduction to this system:
``` -2. To create columns add div elements with the `column` class. Then add a class +To create columns add div elements with the `column` class. Then add a class to describe the width of the column with respect to the container. The possible widths are: @@ -48,7 +48,7 @@ CSS if desired with the `width` attribute. ``` -3. Columns stack up right to left. To force a column out of order all the way to +Columns stack up right to left. To force a column out of order all the way to the right use the `flow-opposite` class on the column. ```html @@ -60,7 +60,7 @@ the right use the `flow-opposite` class on the column. ``` -4. To hide an element on mobile phones add the class `hide-mobile`. To hide on +To hide an element on mobile phones add the class `hide-mobile`. To hide on desktop, use `hide-desktop` instead. ```html @@ -72,6 +72,6 @@ desktop, use `hide-desktop` instead. ``` -5. Another note: I use [box-sizing (as suggested by Paul +Another note: I use [box-sizing (as suggested by Paul Irish)](http://www.paulirish.com/2012/box-sizing-border-box-ftw/), which I think makes dealing with sizing elements a lot more sane.