From cefa8407caf2de0d65f69db21f300b4fd033b9b2 Mon Sep 17 00:00:00 2001 From: Danny Yoo Date: Mon, 21 Nov 2011 23:31:01 -0500 Subject: [PATCH] css example --- examples/hello-css.css | 3 +++ examples/hello-css.rkt | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 examples/hello-css.css create mode 100644 examples/hello-css.rkt diff --git a/examples/hello-css.css b/examples/hello-css.css new file mode 100644 index 0000000..95f2eae --- /dev/null +++ b/examples/hello-css.css @@ -0,0 +1,3 @@ +h1 { + background: blue +} diff --git a/examples/hello-css.rkt b/examples/hello-css.rkt new file mode 100644 index 0000000..ba1c99e --- /dev/null +++ b/examples/hello-css.rkt @@ -0,0 +1,8 @@ +#lang planet dyoo/whalesong/base +(require (planet dyoo/whalesong/web-world) + (planet dyoo/whalesong/resource)) + +(define-resource "hello-css.css") +(define-resource "hello-css-main.html") + +(big-bang 0 (initial-view hello-css-main.html))