Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tolja
Created November 5, 2014 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tolja/c9a398454d41e0519a06 to your computer and use it in GitHub Desktop.
Save tolja/c9a398454d41e0519a06 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<ul>
<li><h1>SASS</h1></li>
<li><h2>ist</h2></li>
<li><h3>TOLL</h3></li>
</ul>
// ----
// Sass (v3.4.7)
// Compass (v1.0.1)
// ----
@mixin wobwob{
-webkit-transition: 1s all ease;
transition: 1s all ease;
}
h1, h2, h3{
@include wobwob;
&:hover{
color: orange;
}
}
h1, h2, h3 {
-webkit-transition: 1s all ease;
transition: 1s all ease;
}
h1:hover, h2:hover, h3:hover {
color: orange;
}
<ul>
<li><h1>SASS</h1></li>
<li><h2>ist</h2></li>
<li><h3>TOLL</h3></li>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment