- All variable declarations at the top
- Partials
- each block goes from @extends(), @includes, space, properties, space, child blocks. All properties are alphabetized.
.partial {
@include border-radius(3px);
@include cursor-hover();
background-color: #FFF;
display: block;
position: absolute;
top: 5px;
.child {
color: black;
}
.second-child {
@include cursor-hover();
color: blue;
}
&:hover {
color: grey;
}
}