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