Skip to content

Instantly share code, notes, and snippets.

@manfromanotherland
Last active September 9, 2016 08:34
Show Gist options
  • Save manfromanotherland/4a7536ce62809390a07e to your computer and use it in GitHub Desktop.
Save manfromanotherland/4a7536ce62809390a07e to your computer and use it in GitHub Desktop.
HTML, CSS: Fixe website signature » fixeideias.com.br #snippet
/*
* Fixe Ideias icon
* fixeideias.com.br
*/
.fixe {
position: absolute;
top: 50%;
right: 0;
margin-top: -15px;
font: bold 30px/1em Arial, sans-serif;
text-decoration: none;
color: #fff;
backface-visibility: hidden;
transition: color .3s, transform .3s;
}
.fixe:hover {
color: #b8d513;
transform: rotate(90deg);
}
<a class="fixe" href="http://fixeideias.com.br/" title="Fixe" target="_blank">&times;</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment