arguments and embedding

i'm wondering if anything like the following is being looked at for future
versions, or if anything similar already exists.

faceA = "comic sans"
faceB = "curlz"

..primaryFont(size) {
	font: size faceA;
}

..secondaryFont(size) {
	font: size faceB;
}

..paragraph {
	margin: 5px;
	.secondaryFont('12px');
}

..title(color) {
        color: color;
        padding: 5px;
        .secondaryFont('18px');
}


Even if the embedding was too much, at least it would be nice to have
something like this possible:

..spacer(size) {
	clear: both;
	height: size;
}

I'm mainly wondering how all the current repetition in css is being
addressed. Any information or links would be appreciated.
sincerely,
horatio

Received on Saturday, 2 December 2006 01:50:38 UTC