-
-
Save kobitoDevelopment/28ea125ac7c75d07033c65c6dac4a925 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
.corner{ | |
width:32px; | |
height:32px; | |
background-color:green; | |
margin-bottom:4px; | |
} | |
.corner-1{ | |
clip-path: path("M0 0.509766V32.5098H32C14.33 32.5098 0 18.1798 0 0.509766Z"); | |
} | |
.corner-2{ | |
clip-path: path("M32 0.509766V32.5098H0C17.67 32.5098 32 18.1798 32 0.509766Z"); | |
} | |
.corner-3{ | |
clip-path: path("M32 32V0H0C17.67 0 32 14.33 32 32Z"); | |
} | |
.corner-4 { | |
clip-path: path("M0 32V0H32C14.33 0 0 14.33 0 32Z"); | |
} |
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 class="corner corner-1"></div> | |
<div class="corner corner-2"></div> | |
<div class="corner corner-3"></div> | |
<div class="corner corner-4"></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment