Created
May 23, 2014 16:16
-
-
Save jameswilson/7380344b3348b52e94aa to your computer and use it in GitHub Desktop.
More Link with triangle after
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
.more-link-triangle-after { | |
&:after { | |
content: ""; | |
position: absolute; | |
width: 0; | |
height: 0; | |
margin-top: .4em; | |
margin-left: .4em; | |
border-top: .4em solid transparent; | |
border-bottom: .4em solid transparent; | |
border-left: .4em solid blue; | |
font-size: 0.9em; | |
} | |
} | |
div.more-link > a, | |
a.more-link { | |
color: blue; | |
@extend .more-link-triangle-after; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment