From b161f1ca6833ded1080aa8b35f6bcf185564ac98 Mon Sep 17 00:00:00 2001 From: Chris Buttery Date: Fri, 7 Sep 2018 10:19:59 +1000 Subject: [PATCH] generate docs --- documentation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation.json b/documentation.json index b02a623..86b2a35 100644 --- a/documentation.json +++ b/documentation.json @@ -1 +1 @@ -[{"name":"Tachyons","comment":" [Tachyons](http://tachyons.io/) is _the_ best CSS framework ever. It's an implementation of\nwhat people call \"Functional CSS\" which makes working with CSS a little bit easier.\n\nIn functional CSS you have a ton of little CSS classes that do one thing, and\ndo it well #unixphilosophy.\n\nEssentially what this means is that can create almost any interface without\nwriting custom css, you only need to compose different CSS selectors together.\nHere is an example:\n\n div [classes [pa1, red, f1]] []\n\nThis will:\n\n - Add the smallest padding available on all four sides (Padding Around 1)\n - Make the foreground color red (an Accessible friendly version)\n - Make the `font-size` as big as an h1 tag.\n\nThere's even responsive versions. Like `p1_ns` that will only add padding\nto anything that is \"not small\" (larger than mobile). This style allows you to easily create responsive mobile interfaces.\n\n\n# Working example\n\nTo use the library, just put `tachyons.css` somewhere in your elm-html code to add the stylesheet to your document, and then you can do whatever you want!\nHere is a small example:\n\n module Main exposing (..)\n\n import Tachyons exposing (classes, tachyons)\n import Tachyons.Classes exposing (f1, purple)\n import Html exposing (..)\n\n\n main =\n div [ classes [ f1, purple ] ]\n [ tachyons.css\n , text \"I'm Purple and big!\"\n ]\n\n# Helper Classes\n\n@docs classes, tachyons\n","unions":[],"aliases":[],"values":[{"name":"classes","comment":" This is a helper funciton that will allow you to combine\nmultiple Tachyons classes (which are strings) are return a\n`Html.Attributes`\n\n div [classes [pa3, red, f1]] []\n\n","type":"List.List String.String -> Html.Attribute msg"},{"name":"tachyons","comment":" [Tachyons 4.8.1](http://tachyons.io/)\n\nThis basically includes an `