SCSS Rover
.class {
margin:20px;
&:hover {
color:yellow;
}
}
Clever Crane
.class {
margin:20px;
&:hover {
color:yellow;
}
}
.button {
&:hover {
opacity: 1;
}
&:active {
position: relative;
top: 7px;
box-shadow: none;
}
}