Created
February 26, 2013 15:47
-
-
Save gavinblair/5039470 to your computer and use it in GitHub Desktop.
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
#box{ | |
display: block; | |
height: 100px; | |
width: 100px; | |
background: green; | |
position: relative; | |
opacity: .5; | |
border: 2px solid blue; | |
} | |
#box:after{ | |
content: "▼"; | |
color: green; | |
display: block; | |
position: absolute; | |
left: 78%; | |
bottom: -12px; | |
text-shadow: 0px 4px 0px blue; | |
-webkit-transform: scaleY(.7); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment