You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
288 B
27 lines
288 B
@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";
|