A Pen by Pranava Swaroop on CodePen.
Created
July 27, 2020 04:23
-
-
Save elitenomad/1a0257939fe6b78889004e18dfaeeeab to your computer and use it in GitHub Desktop.
OJMGoOb
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
<div id="curvedarrow"> | |
</div> |
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
#curvedarrow { | |
width: 0;height: 0; | |
position: relative; | |
border-top: 9px solid transparent; | |
border-right: 9px solid red; | |
transform: rotate(10deg); | |
} | |
#curvedarrow::after{ | |
content: ""; | |
position: absolute; | |
width: 10px; | |
height: 12px; | |
border: 0 solid transparent; | |
border-top: 3px solid red; | |
border-radius: 20px 0 0 0; | |
top: -12px; | |
left: -9px; | |
width: 12px; | |
height: 12px; | |
transform: rotate(45deg); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment