|
Revision 251, 297 bytes
(checked in by sholloway, 6 years ago)
|
- Removed default encoding from xmlBuilder so that source files can specify their own encoding
- Fixed a small bug in cssParser for empty strings
- Added a new css demoEx that uses files instead of constant strings
|
| Line | |
|---|
| 1 |
* { |
|---|
| 2 |
image: ''; |
|---|
| 3 |
font-size: medium; |
|---|
| 4 |
fgcolor: inherit; |
|---|
| 5 |
bgcolor: inherit; |
|---|
| 6 |
} |
|---|
| 7 |
|
|---|
| 8 |
slideshow { bgcolor: blue; fgcolor: white; } |
|---|
| 9 |
slideshow > title { font-size: 80pt; } |
|---|
| 10 |
slide { bgcolor: black; fgcolor: yellow} |
|---|
| 11 |
|
|---|
| 12 |
point#special { |
|---|
| 13 |
font-size: xx-large; |
|---|
| 14 |
fgcolor: red; |
|---|
| 15 |
} |
|---|
| 16 |
|
|---|