mirror of
https://github.com/less/less.js.git
synced 2026-01-24 22:58:04 -05:00
48 lines
657 B
Plaintext
48 lines
657 B
Plaintext
.mixin { border: 1px solid black; }
|
|
.mixout { border-color: orange; }
|
|
.borders { border-style: dashed; }
|
|
|
|
#namespace {
|
|
.borders {
|
|
border-style: dotted;
|
|
}
|
|
.biohazard {
|
|
content: "death";
|
|
.man {
|
|
color: transparent;
|
|
}
|
|
}
|
|
}
|
|
#theme {
|
|
> .mixin {
|
|
background-color: grey;
|
|
}
|
|
}
|
|
#container {
|
|
color: black;
|
|
.mixin;
|
|
.mixout;
|
|
#theme > .mixin;
|
|
}
|
|
|
|
#header {
|
|
.milk {
|
|
color: white;
|
|
.mixin;
|
|
#theme > .mixin;
|
|
}
|
|
#cookie {
|
|
.chips {
|
|
#namespace .borders;
|
|
.calories {
|
|
#container;
|
|
}
|
|
}
|
|
.borders;
|
|
}
|
|
}
|
|
.secure-zone { #namespace .biohazard .man; }
|
|
.direct {
|
|
#namespace > .borders;
|
|
}
|