├── .gitignore ├── LICENSE ├── Main.elm ├── README.md ├── Styles.elm ├── chrono.gif ├── elm-package.json └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | /elm-stuff 2 | /elm.js 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/elm-chronographify/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/elm-chronographify/HEAD/Main.elm -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/elm-chronographify/HEAD/README.md -------------------------------------------------------------------------------- /Styles.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/elm-chronographify/HEAD/Styles.elm -------------------------------------------------------------------------------- /chrono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/elm-chronographify/HEAD/chrono.gif -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/elm-chronographify/HEAD/elm-package.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ohanhi/elm-chronographify/HEAD/index.html --------------------------------------------------------------------------------