...
Here is a sample demonstration of its usage, the following application relies solely on CSSBuilder to change its looks

stylesheet
| Code Block |
|---|
* {
background-color: red;
}
jbutton {
background-color: blue;
font-size: 120%;
}
#button1 {
background-color: green;
font-style: italic;
}
.active {
background-color: yellow;
font-weight: bold;
}
|
...