css example

This commit is contained in:
Danny Yoo 2011-11-21 23:31:01 -05:00
parent 5f45876bc5
commit cefa8407ca
2 changed files with 11 additions and 0 deletions

3
examples/hello-css.css Normal file
View File

@ -0,0 +1,3 @@
h1 {
background: blue
}

8
examples/hello-css.rkt Normal file
View File

@ -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))