Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / prettier-stylelint / tests / less.less
diff --git a/.config/coc/extensions/node_modules/coc-prettier/node_modules/prettier-stylelint/tests/less.less b/.config/coc/extensions/node_modules/coc-prettier/node_modules/prettier-stylelint/tests/less.less
new file mode 100644 (file)
index 0000000..564f8f4
--- /dev/null
@@ -0,0 +1,14 @@
+@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%);
+  div { .box-shadow(0 0 5px, 30%) }
+}