Skip to content

Instantly share code, notes, and snippets.

@neilwong2012
Created December 9, 2019 04:53
Show Gist options
  • Save neilwong2012/bfb270f939b6e4add4f0d017f3c6a430 to your computer and use it in GitHub Desktop.
Save neilwong2012/bfb270f939b6e4add4f0d017f3c6a430 to your computer and use it in GitHub Desktop.
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