mirror of
https://github.com/less/less.js.git
synced 2026-02-08 22:15:04 -05:00
30 lines
362 B
Plaintext
30 lines
362 B
Plaintext
.sidebar {
|
|
width: 300px;
|
|
background: red;
|
|
|
|
.box {
|
|
background: #FFF;
|
|
border: 1px solid #000;
|
|
margin: 10px 0;
|
|
}
|
|
}
|
|
|
|
.sidebar2 {
|
|
&:extend(.sidebar all);
|
|
background: blue;
|
|
}
|
|
|
|
.type1 {
|
|
.sidebar3 {
|
|
&:extend(.sidebar all);
|
|
background: green;
|
|
}
|
|
}
|
|
|
|
.type2 {
|
|
&.sidebar4 {
|
|
&:extend(.sidebar all);
|
|
background: red;
|
|
}
|
|
}
|