.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / prettier-stylelint / fixtures / less.less
1 @base: #f938ab;
2
3 .box-shadow(@style, @c) when (iscolor(@c)) {
4   -webkit-box-shadow: @style @c;
5   box-shadow:         @style @c;
6 }
7 .box-shadow(@style, @alpha: 50%) when (isnumber(@alpha)) {
8   .box-shadow(@style, rgba(0, 0, 0, @alpha));
9 }
10 .box {
11   color: saturate(@base, 5%);
12   border-color: lighten(@base, 30%);
13   div { .box-shadow(0 0 5px, 30%) }
14 }