Rename part12 to final

This commit is contained in:
Richard Feldman
2016-09-01 01:35:02 -07:00
parent 79545b20f1
commit b7c72b9f1f
10 changed files with 0 additions and 0 deletions

14
final/ElmHub/Css.elm Normal file
View File

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