Skip to content

Instantly share code, notes, and snippets.

@jamesflorentino
Created July 3, 2012 22:49
Show Gist options
  • Save jamesflorentino/3043928 to your computer and use it in GitHub Desktop.
Save jamesflorentino/3043928 to your computer and use it in GitHub Desktop.
<style>
@import "style.css";
</style>
<div>
<h1>Watch this carefully between hover states.</h1>
</div>
body { background: black; }
h1 {
font-family: Helvetica Neue, Helvetica, sans;
color: white;
text-align: center;
opacity: 1;
-webkit-transition: 400ms;
}
h1:hover {
opacity: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment