Feature: manage less files

This commit is contained in:
fecaille
2016-03-31 16:42:18 +02:00
parent 6251fcf075
commit 21e635f0c6
6 changed files with 22 additions and 28 deletions

View File

@@ -0,0 +1,13 @@
@base: #f938ab;
.box-shadow(@style, @c) when (iscolor(@c)) {
-webkit-box-shadow: @style @c;
box-shadow: @style @c;
}
.box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)) {
.box-shadow(@style, rgba(0, 0, 0, @alpha));
}
.box {
color: saturate(@base, 5%);
border-color: lighten(@base, 30%);
}