Created
June 16, 2012 06:38
-
-
Save louisbullock/2940224 to your computer and use it in GitHub Desktop.
Reload Icon in CSS
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
| /** | |
| * Reload Icon in CSS | |
| */ | |
| body { | |
| font: 14px/20px Helvetica Neue, Helvetica, Arial, sans-serif; | |
| -webkit-font-smoothing: antialiased; | |
| text-shadow:0 0 1px rgba(0,0,0,0.01); | |
| -webkit-text-stroke:1px transparent; | |
| text-rendering:optimizeLegibility; | |
| padding:20px; | |
| } | |
| a {text-decoration:none;} | |
| a.button.reload { | |
| height:5px; | |
| width:5px; | |
| border-radius:6px; | |
| display:block; | |
| border:2px solid #8d8d8d; | |
| } | |
| a.button.reload:before { | |
| content:'▶'; | |
| display:block; | |
| position:relative; | |
| top:-9px; | |
| right:0px; | |
| color:#8d8d8d; | |
| font:normal normal 14px/16px "Arial Unicode MS","Microsoft Sans Serif","Free Sans","Gentium Plus","Gentium Basic","Gentium","GentiumAlt","DejaVu Sans","DejaVu Serif","Free Serif","TITUS Cyberbit Basic","Bitstream Cyberbit","Bitstream CyberBase","Doulos SIL","Code2000","Code2001"; | |
| text-shadow:1px 2px white; | |
| } |
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 href="#" class="button reload"></a> |
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
| {"view":"separate","fontsize":"80","seethrough":"","prefixfree":"","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment