Skip to content

Instantly share code, notes, and snippets.

@bzar
Created August 26, 2014 14:22
Show Gist options
  • Save bzar/885fbbed6258da10fe0f to your computer and use it in GitHub Desktop.
Save bzar/885fbbed6258da10fe0f to your computer and use it in GitHub Desktop.
import Html
import Html (..)
import Window
main = lift scene Window.dimensions
scene (w,h) = Html.toElement w h content
content = node "div" [] []
[ text "Hellollo World"
, myButton (px 128) (px 64) "Button!"
]
myButton : String -> String -> String -> Html
myButton w h caption =
node "div" []
[ "display" := "inline-block"
, "width" := w
, "textAlign" := "center"
, "backgroundColor" := "#333"
, "color" := "#eee"
, "height" := h
, "lineHeight" := h
]
[ text caption ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment