Created
December 9, 2019 04:53
-
-
Save neilwong2012/bfb270f939b6e4add4f0d017f3c6a430 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
body { | |
background: lightgrey; | |
font-family: 'Rubik'; | |
line-height: 1.35; | |
padding: 1rem; | |
} | |
.elem { | |
position: relative; | |
display: flex; | |
align-items: center; | |
max-width: 400px; | |
background: #fff; | |
padding: 2rem 1rem; | |
font-size: 1.5rem; | |
margin: 2rem auto; | |
text-align: center; | |
box-sizing: border-box; | |
&:before { | |
content: ""; | |
position: absolute; | |
left: 0; | |
top: 4px; | |
width: 50%; | |
height: 100%; | |
z-index: -1; | |
transform: skewY(-2deg); | |
} | |
&:after { | |
content: ""; | |
position: absolute; | |
right: 0; | |
top: 4px; | |
width: 50%; | |
height: 100%; | |
z-index: -1; | |
transform: skewY(2deg); | |
} | |
&:before, | |
&:after { | |
background: linear-gradient(to bottom, transparent, #000); | |
background: #000; | |
filter: blur(3px); | |
opacity: 0.3; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment