Created
November 5, 2014 22:35
-
-
Save tolja/c9a398454d41e0519a06 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
<li><h1>SASS</h1></li> | |
<li><h2>ist</h2></li> | |
<li><h3>TOLL</h3></li> | |
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// 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; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1, h2, h3 { | |
-webkit-transition: 1s all ease; | |
transition: 1s all ease; | |
} | |
h1:hover, h2:hover, h3:hover { | |
color: orange; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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