.less (pronounced dot-less) is a .NET port of the funky LESS JavaScript libary
Lovingly ported by Christopher Owen, Erik van Brakel, Daniel Hoelbling, James Foster and Luke Page
Variables allow you to specify widely used values in a single place, and then re-use them throughout the style sheet, making global changes as easy as changing one line of code.
@brand_color: #4D926F;
#header {
color: @brand_color;
}
h2 {
color: @brand_color;
}
Are some elements in your style sheet proportional to other elements? Operations let you add, subtract, divide and multiply property values and colors, giving you the power to do create complex relationships between properties.
@the-border: 1px;
@base-color: #111;
#header {
color: @base-color * 3;
border-left: @the-border;
border-right: @the-border * 2;
}
#footer {
color: (@base-color + #111) * 1.5;
}
Mixins allow you to embed all the properties of a class into another class by simply including the class name as one of its properties. It's just like variables, but for whole classes.
.rounded_corners(@radius: 5px) {
-moz-border-radius: @radius;
-webkit-border-radius: @radius;
border-radius: @radius;
}
#header {
.rounded_corners;
}
#footer {
.rounded_corners(10px);
}
Rather than constructing long selector names to specify inheritance, in Less you can simply nest selectors inside other selectors. This makes inheritance clear and style sheets shorter.
#header {
color: red;
a {
font-weight: bold;
text-decoration: none;
}
}
.LESS implements a number of functions to make working with colors easier.
@base-color: hsl(30, 40%, 60%)
#header {
color: lightness(@base-color, 10%);
}
#footer {
color: saturation(@base-color, -10%);
}
You can find the latest source & downloads for dotless at GitHub
If you want to statically compile your files you can use the included dotless.Compiler.exe

Lets make the dotless processor handle our .LESS files.
Add this entry to the HttpHandlers section of your Web.Config:
<add type="
dotless.Core.LessCssHttpHandler
,dotless.Core" validate="false"
path="*.LESS" verb="*" />
First add our config handler in the "configSections" node of your web.config
<section name="dotless"
type="dotless.Core.configuration.
DotlessConfigurationSectionHandler
,dotless.Core" />
Now you can configure caching and minifying of the Css output
<dotless
minifyCss="false"
cache="true" />
Reference your LESS files the same way as you would any other CSS file, just ensure that you use the .LESS extention.