Current Dev State

This commit is contained in:
Tim Lorsbach
2025-06-23 20:13:54 +02:00
parent b4f9bb277d
commit ded50edaa2
22617 changed files with 4345095 additions and 174 deletions

View File

@ -0,0 +1,3 @@
{
"my-color": "red"
}

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";

View File

@ -0,0 +1,7 @@
/*comments*/
.unused-css {
color: white;
}
.imported {
color: black;
}