Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Fixed first line of sample code that was not rendered properly. #2

Merged
merged 1 commit into from Jun 15, 2011
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Expand Up @@ -7,6 +7,7 @@ language, parse it in node, and render it with ccss.
install: `npm install ccss` install: `npm install ccss`


main.coffee: main.coffee:

ccss = require 'ccss' ccss = require 'ccss'


template = require './template.coffee' template = require './template.coffee'
Expand All @@ -16,6 +17,7 @@ main.coffee:
#or all at once: ccss.compileFile './template.coffee', 'main.css' #or all at once: ccss.compileFile './template.coffee', 'main.css'


template.coffee: template.coffee:

borderRadius = (str) -> borderRadius = (str) ->
WebkitBorderRadius: str WebkitBorderRadius: str
MozBorderRadius: str MozBorderRadius: str
Expand Down Expand Up @@ -45,6 +47,7 @@ template.coffee:
opacity: opaque opacity: opaque


main.css: main.css:

form input { form input {
padding: 5px; padding: 5px;
border: 1px solid; border: 1px solid;
Expand Down