Last active
September 19, 2021 15:55
-
-
Save csssecrets/bc32dc20adea2261c731 to your computer and use it in GitHub Desktop.
Folded corner effect — at an angle
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
/** | |
* Folded corner effect — at an angle | |
*/ | |
div { | |
position: relative; | |
width: 12em; | |
background: #58a; /* Fallback */ | |
background: linear-gradient(-150deg, transparent 1.5em, #58a 0); | |
padding: 2em; | |
color: white; | |
font: 100%/1.6 Baskerville, Palatino, serif; | |
border-radius: .5em; | |
} | |
div::before { | |
content: ''; | |
position: absolute; | |
top: 0; right: 0; | |
width: 1.73em; height: 3em; | |
background: linear-gradient(to left bottom, transparent 50%, rgba(0,0,0,.2) 0, rgba(0,0,0,.4)) 100% 0 no-repeat; | |
transform: translateY(-1.3em) rotate(-30deg); | |
transform-origin: bottom right; | |
border-bottom-left-radius: .5em; | |
box-shadow: -.2em .2em .3em -.1em rgba(0,0,0,.15) | |
} |
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>“The only way to get rid of a temptation is to yield to it.” | |
— Oscar Wilde, The Picture of Dorian Gray</div> |
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
// alert('Hello world!'); |
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
{"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