sass hover affect other element code example
Example 1: make action on hover on other element
#container:hover #cube {
background-color: yellow;
}
Example 2: css affect other elements on hover
#container:hover ~ #cube { background-color: yellow; }