Monthly Archives: October 2006

Fishes!

I started my first aquarium in early August but hadn’t taken any pictures of it until now (I need to get a camera of my own!). There are currently 19 fish and 5 different types of plants in here.

Full tank

Closeup of pleco & moss

My goal is to take pictures regularly so that I can track the tank’s progress.

Serverside CSS Preprocessor

Had an idea to make a CSS preprocessor that would help solve many of the issues I have with CSS currently. Ideally it would:

Allow nesting of styles
Being able to nest styles ‘inside’ other styles would solve the problem of writing out tons of selector chains.

Automatically insert necessary attributes
For IE and other browsers. IE: automatically add ‘cursor:hand’ whenever ‘cursor:pointer’ is seen. Could also add the IE-specific opacity property

Allow use of variables
It’d be great to be able to reference a color by variable in multiple styles instead of having to update multiple styles when the color changes.

Looks like someone had a similar idea (but currently only does variables).