10 lines
90 B
Plaintext
10 lines
90 B
Plaintext
|
.animal {
|
||
|
color: red;
|
||
|
}
|
||
|
.dog {
|
||
|
&:extend(.animal);
|
||
|
&:hover {
|
||
|
color: green;
|
||
|
}
|
||
|
}
|