Skip to content

Instantly share code, notes, and snippets.

@una
Created March 28, 2015 05:25
Show Gist options
  • Save una/2e70df9b549ac0955968 to your computer and use it in GitHub Desktop.
Save una/2e70df9b549ac0955968 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div>
<h2>Hello</h2>
<p>These are some words.</p>
</div>
// ----
// Sass (v3.4.12)
// Compass (v1.0.3)
// ----
div {
margin: 50px auto;
width: 200px;
height: 100px;
background: turquoise;
transition-duration: 1s;
padding: 1em;
&:hover {
transform: scaleX(1.5) scaleY(1.5);
}
}
div {
margin: 50px auto;
width: 200px;
height: 100px;
background: turquoise;
transition-duration: 1s;
padding: 1em;
}
div:hover {
transform: scaleX(1.5) scaleY(1.5);
}
<div>
<h2>Hello</h2>
<p>These are some words.</p>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment