Created
September 24, 2012 11:36
-
-
Save juanmaguitar/3775562 to your computer and use it in GitHub Desktop.
Simple arrow with symbol and text-shadow
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
<p><span>←</span></p> |
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
@import "compass"; | |
body { | |
background: /* #f0efea */ #000; | |
} | |
p { | |
width:100%; | |
text-align:center; | |
span { | |
color:#808080; | |
font-family: Sans-serif; | |
font-size:400px; | |
@include text-shadow( 3px 3px 11px rgba(255, 255, 255, 1) ); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment