Skip to content

Instantly share code, notes, and snippets.

@rhysyngsun
Created July 3, 2009 05:32
Show Gist options
  • Save rhysyngsun/139920 to your computer and use it in GitHub Desktop.
Save rhysyngsun/139920 to your computer and use it in GitHub Desktop.
Source:
def builder = new GroovyCssBuilder();
def str = builder."#header" {
"bg-color" 0x000000
"border-color" 0x4820bf
h1 {
".sub" {
"text-decoration" "underline"
}
color 0xffffff
display "none"
}
}
Generated:
#header {
bg-color: #000000;
border-color: #4820BF;
}
#header h1 {
color: #FFFFFF;
display: none;
}
#header h1 .sub {
text-decoration: underline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment