diff --git a/stages/9/ElmHub.elm b/stages/9/ElmHub.elm new file mode 100644 index 0000000..e69de29 diff --git a/stages/9/Stylesheets.elm b/stages/9/Stylesheets.elm new file mode 100644 index 0000000..460790c --- /dev/null +++ b/stages/9/Stylesheets.elm @@ -0,0 +1,10 @@ +module Stylesheets (..) where + +import Css.File exposing (..) +import ElmHub + + +port files : CssFileStructure +port files = + toFileStructure + [ ( "style.css", compile ElmHub.css ) ] diff --git a/stages/9/css/Stylesheets.elm b/stages/9/css/Stylesheets.elm new file mode 100644 index 0000000..460790c --- /dev/null +++ b/stages/9/css/Stylesheets.elm @@ -0,0 +1,10 @@ +module Stylesheets (..) where + +import Css.File exposing (..) +import ElmHub + + +port files : CssFileStructure +port files = + toFileStructure + [ ( "style.css", compile ElmHub.css ) ] diff --git a/stages/9/src/ElmHub.elm b/stages/9/src/ElmHub.elm new file mode 100644 index 0000000..e3ed2f3 --- /dev/null +++ b/stages/9/src/ElmHub.elm @@ -0,0 +1,8 @@ +module ElmHub (..) where + +import Css exposing (..) + + +css = + stylesheet + [ (.) "foo" [] ]