structure, layout and automation

This commit is contained in:
Tancre
2020-09-16 14:23:28 +02:00
commit 0efda7fffe
15549 changed files with 1280031 additions and 0 deletions

View File

@ -0,0 +1,6 @@
@import "vars";
@import "struct";
.myvars {
content: quote($import_counter);
}

View File

@ -0,0 +1,3 @@
.common-struct {
content: "common-struct";
}

View File

@ -0,0 +1,5 @@
$import_counter: $import_counter + 1;
.common-vars {
content: "common-vars";
}

View File

@ -0,0 +1,7 @@
@import "_common";
@import "a1";
.a2 {
content: "a2";
}

View File

@ -0,0 +1,3 @@
.a1 {
content: "a1";
}

View File

@ -0,0 +1,5 @@
@import "b1";
.b2 {
content: "b2";
}

View File

@ -0,0 +1,3 @@
.b1 {
content: "b1";
}

View File

@ -0,0 +1,32 @@
.common-vars {
content: "common-vars"; }
.common-struct {
content: "common-struct"; }
.myvars {
content: "1"; }
.a1 {
content: "a1"; }
.a2 {
content: "a2"; }
.common-vars {
content: "common-vars"; }
.common-struct {
content: "common-struct"; }
.myvars {
content: "2"; }
.b1 {
content: "b1"; }
.b2 {
content: "b2"; }
#the-last {
content: "LAST"; }

View File

@ -0,0 +1,8 @@
$import_counter: 0;
@import "a";
@import "common";
@import "b";
#the-last {
content: "LAST";
}