Merge pull request #344 from BPScott/add-less

Add LESS support (.less)
This commit is contained in:
Ted Nyman
2013-01-07 18:39:16 -08:00
2 changed files with 21 additions and 0 deletions

View File

@@ -731,6 +731,13 @@ Lasso:
- .lasso9
- .ldml
Less:
type: markup
group: CSS
lexer: CSS
ace_mode: less
primary_extension: .less
LilyPond:
lexer: Text only
primary_extension: .ly

14
samples/Less/screen.less Normal file
View File

@@ -0,0 +1,14 @@
@blue: #3bbfce;
@margin: 16px;
.content-navigation {
border-color: @blue;
color:
darken(@blue, 9%);
}
.border {
padding: @margin / 2;
margin: @margin / 2;
border-color: @blue;
}