-
-
Save jackfearing/983d08a9fbae94d692d4909891d2632b to your computer and use it in GitHub Desktop.
This file contains 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
.arrow-up { | |
width: 0; | |
height: 0; | |
border-left: 5px solid transparent; | |
border-right: 5px solid transparent; | |
border-bottom: 5px solid black; | |
} | |
.arrow-down { | |
width: 0; | |
height: 0; | |
border-left: 20px solid transparent; | |
border-right: 20px solid transparent; | |
border-top: 20px solid #f00; | |
} | |
.arrow-right { | |
width: 0; | |
height: 0; | |
border-top: 60px solid transparent; | |
border-bottom: 60px solid transparent; | |
border-left: 60px solid green; | |
} | |
.arrow-left { | |
width: 0; | |
height: 0; | |
border-top: 10px solid transparent; | |
border-bottom: 10px solid transparent; | |
border-right:10px solid blue; | |
} |
This file contains 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
<div class="arrow-up"></div> | |
<div class="arrow-down"></div> | |
<div class="arrow-left"></div> | |
<div class="arrow-right"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment