Add ElmHub stylesheets.

This commit is contained in:
Richard Feldman
2016-03-06 10:06:24 -08:00
parent d9489de5a5
commit 8fc85c71f6
4 changed files with 28 additions and 0 deletions

0
stages/9/ElmHub.elm Normal file
View File

10
stages/9/Stylesheets.elm Normal file
View File

@@ -0,0 +1,10 @@
module Stylesheets (..) where
import Css.File exposing (..)
import ElmHub
port files : CssFileStructure
port files =
toFileStructure
[ ( "style.css", compile ElmHub.css ) ]

View File

@@ -0,0 +1,10 @@
module Stylesheets (..) where
import Css.File exposing (..)
import ElmHub
port files : CssFileStructure
port files =
toFileStructure
[ ( "style.css", compile ElmHub.css ) ]

8
stages/9/src/ElmHub.elm Normal file
View File

@@ -0,0 +1,8 @@
module ElmHub (..) where
import Css exposing (..)
css =
stylesheet
[ (.) "foo" [] ]