I have a new version of my CSS filter library. Here are the highlights of what has changed:
To clarify the last bullet, I will give an example of the old syntax (which still works):
body
{
color: #000;
if ($_GET[‘theme’] == ‘blue’)
backgroundâ€color: #03C;
else
backgroundâ€color: #CCC;
endif
}
Now can be written on a single line:
body {
color: #000;
if ($_GET[‘theme’] == ‘blue’); backgroundâ€color: #03C; else; backgroundâ€color: #CCC; endif;
}
I hope you found this website useful.