Created
September 17, 2020 22:12
-
-
Save DomenicoColandrea86/6a3dbb71b14b4d5b44f667d38c38f95f to your computer and use it in GitHub Desktop.
Triangle with Shadow
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
/* | |
Triangle with Shadow | |
*/ | |
.triangle-with-shadow { | |
width: 100px; | |
height: 100px; | |
position: relative; | |
overflow: hidden; | |
//box-shadow: 0 16px 10px -17px rgba(0,0,0,0.5); | |
} | |
.triangle-with-shadow:after { | |
content: ""; | |
position: absolute; | |
width: 50px; | |
height: 50px; | |
background: #999; | |
transform: rotate(45deg); | |
top: 75px; | |
left: 25px; | |
box-shadow: -1px -1px 10px -2px rgba(0,0,0,0.5); | |
} | |
.triangle-with-shadow:hover, .triangle-with-shadow:hover:after { | |
box-shadow: none; | |
} |
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="triangle-with-shadow"></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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment