🎨 elm-format root

This commit is contained in:
Richard Feldman
2016-08-21 06:18:33 -07:00
parent b5e7011d2b
commit 640be1a638
11 changed files with 23 additions and 161 deletions

View File

@@ -1,14 +1,14 @@
module ElmHub.Css (..) where
module ElmHub.Css exposing (..)
import Css exposing (..)
css =
stylesheet
[ ((.) "content")
[ width (px 960)
, margin2 zero auto
, padding (px 30)
, fontFamilies [ "Helvetica", "Arial", "serif" ]
stylesheet
[ ((.) "content")
[ width (px 960)
, margin2 zero auto
, padding (px 30)
, fontFamilies [ "Helvetica", "Arial", "serif" ]
]
]
]