dekugrid

multiple implementations of the Deco Grid System  http://limi.net/deco.gs
git clone https://git.ce9e.org/dekugrid.git

commit
f817dc236a7db576c72af5a0cb2025a0473fa01d
parent
f5ec144ac55aed78cd728eef071bdb5a6aa6c3e5
Author
Tobias Bengfort <tobias.bengfort@gmx.net>
Date
2014-01-16 09:46
add README

Diffstat

A README.md 20 ++++++++++++++++++++

1 files changed, 20 insertions, 0 deletions


diff --git a/README.md b/README.md

@@ -0,0 +1,20 @@
   -1     1 decogrid.scss -- a SASS implementation of the Deco Grid System
   -1     2 by Tobias Bengfort <tobias.bengfort@gmx.net>
   -1     3 based on deco.gs by Alexander Limi <http://limi.net/deco.gs>
   -1     4 Placed in the Public Domain.
   -1     5 
   -1     6 Decogrid is a simple, small and flexible grid system.  The base technique used
   -1     7 in Deco is something that is documented in the article [Faux Absolute
   -1     8 Positioning][1] at A List Apart.  Deco is just a system that applies that
   -1     9 method to the notion of a CSS grid system.  decogrid.scss in turn is just a
   -1    10 system to generate decogrids using the [SASS][2] CSS preprocessor.
   -1    11 
   -1    12 Why would you want to use it? Because you need an unusual number of columns
   -1    13 (the original decogrid provides 12 and 16) or want to configure the margin
   -1    14 between columns (the original decogrid provides 2.08333% and 0%).
   -1    15 
   -1    16 Just set the appropriate values for `$cols` and `$margin` and SASS will do all
   -1    17 the math. In addition you get mixins to use in your existing classes.
   -1    18 
   -1    19 [1]: http://www.alistapart.com/articles/fauxabsolutepositioning/
   -1    20 [2]: http://sass-lang.com