Skip to content

Instantly share code, notes, and snippets.

@DarbyBrown
Created August 21, 2015 10:54
Show Gist options
  • Save DarbyBrown/6a1b8256bc3d45e374ff to your computer and use it in GitHub Desktop.
Save DarbyBrown/6a1b8256bc3d45e374ff to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="class">
hover me
</div>
<div>
and effect me
</div>
// ----
// libsass (v3.2.5)
// ----
body {
background: #222;
color: white;
font-size: 3em;
}
div {
transition: 0.3s;
cursor: pointer;
}
.class:hover + div {
color: red;
letter-spacing: 1em;
}
body {
background: #222;
color: white;
font-size: 3em;
}
div {
transition: 0.3s;
cursor: pointer;
}
.class:hover + div {
color: red;
letter-spacing: 1em;
}
<div class="class">
hover me
</div>
<div>
and effect me
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment