Last active
September 9, 2016 08:34
-
-
Save manfromanotherland/4a7536ce62809390a07e to your computer and use it in GitHub Desktop.
HTML, CSS: Fixe website signature » fixeideias.com.br #snippet
This file contains hidden or 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
/* | |
* 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); | |
} |
This file contains hidden or 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
<a class="fixe" href="http://fixeideias.com.br/" title="Fixe" target="_blank">×</a> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment