Tuesday, August 31, 2010

Less.js Will Obsolete CSS

LESS has been implemented in JavaScript. For those who never heard of LESS, it is a css preprocessor which can make your css "programmable". 

Here’s a basic example of LESS code to give you an idea of what it does:

@brand-color: #3879BD;  #header { a { color: @brand-color; &:hover { color: #000; } } }

In this example, brand-color is declared globally. In normal css, you have to specify it at every css selector where  to make changes of the brand-color, you have to modify it at each css selector which can be tedious if you use it many times. Since this example use LESS, you just have to modify @brand-color at the first line. For more example please visit LESS Official Website or fadeyev.net.

P.S.S. Less.js browser script currently won’t work if you’re using Chrome and the path to your page starts with “file:///” due to a known Chrome issue.

Posted via email from Aerialicious Solution

Monday, August 30, 2010

Free Wireframing Kits, UI Design Kits, PDFs and Resources - Smashing Magazine

You can visit this website if you are looking for stencil or psd to design your mobile or web application. Smashing Magazine has a great list of free witeframing kits, ui design kits and etc.

Posted via email from Aerialicious Solution

Webinaria - Free open source screen recording software

So far, this is the only free screen recording software that can combine video from webcam.

The default format is Avi. However you can export it into Flash video or publish it on webinaria website where you can receive ratings and reviews from other webinaria members.

You can also add text at specific interval in case you want to describe something in your video.

Posted via email from Aerialicious Solution