This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Html exposing (..) | |
import Html.App exposing (..) | |
import Html.Attributes exposing (..) | |
import Html.Events exposing (..) | |
import Html.Attributes exposing (..) | |
import Http | |
import Task exposing (Task) | |
import Json.Decode as Json exposing ((:=)) | |
type Msg |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Utils.insertCSS('@import url(http://fonts.googleapis.com/css?family=Pacifico)') | |
PacificoLayer = new Layer | |
html: "This is Pacifico" | |
style: { fontFamily: "Pacifico" } | |
Utils.insertCSS('@import url(http://fonts.googleapis.com/css?family=Rozha+One);') | |
RozhaOneLayer = new Layer | |
html: "This is Rozha One" |
OlderNewer