This commit is contained in:
chrosey
2017-09-13 07:52:34 +02:00
parent a1f16c37f4
commit 2340b0226b
24621 changed files with 2912161 additions and 149 deletions
+3
View File
@@ -0,0 +1,3 @@
{
"my-color": "red"
}
+27
View File
@@ -0,0 +1,27 @@
@var: black;
.a() {
color: red;
}
.b {
color: green;
.a();
color: blue;
background: @var;
}
.a, .b {
background: green;
.c, .d {
background: gray;
& + & {
color: red;
}
}
}
.extend:extend(.a all) {
color: pink;
}
@import (inline) "imported.css";
+7
View File
@@ -0,0 +1,7 @@
/*comments*/
.unused-css {
color: white;
}
.imported {
color: black;
}