Skip to content

Instantly share code, notes, and snippets.

@jhned
Created October 19, 2015 14:41
Show Gist options
  • Save jhned/3ec846ef28402cd404e3 to your computer and use it in GitHub Desktop.
Save jhned/3ec846ef28402cd404e3 to your computer and use it in GitHub Desktop.
.parent {
width: 50%;
float: left;
&:before, &:after {
content: "";
}
&:first-child {
color: red;
}
.child-element {
display: none;
}
&:hover {
color: blue;
.child-element {
display: block;
}
}
&.open {
height: 100%;
.child-element {
color: red;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment