Skip to content

Instantly share code, notes, and snippets.

@czajkovsky
Created October 24, 2014 11:13
Show Gist options
  • Save czajkovsky/64f3c1af8bef78937c50 to your computer and use it in GitHub Desktop.
Save czajkovsky/64f3c1af8bef78937c50 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.3.14)
// Compass (v1.0.1)
// Bourbon (v4.0.2)
// ----
@import "bourbon/bourbon";
.animation-box {
@include transition(opacity 1.0s);
width: 100px;
height: 100px;
opacity: 1;
background: #f00;
&:hover { opacity: 0; }
}
.animation-box {
-webkit-transition: opacity 1s;
-moz-transition: opacity 1s;
transition: opacity 1s;
width: 100px;
height: 100px;
opacity: 1;
background: #f00;
}
.animation-box:hover {
opacity: 0;
}
<div class='animation-box'></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment