Skip to content

Instantly share code, notes, and snippets.

@gsklee
Created November 10, 2015 04:22
Show Gist options
  • Save gsklee/d667ddae00353f88fb6c to your computer and use it in GitHub Desktop.
Save gsklee/d667ddae00353f88fb6c to your computer and use it in GitHub Desktop.
Bio-Inspired Frontend Engineering
.backgrounds {
position: relative;
-webkit-filter: contrast(1.1) saturate(1.1);
filter: contrast(1.1) saturate(1.1);
}
.backgrounds::after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
pointer-events: none;
background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.8), rgba(255, 200, 200, 0.6), #111 60%);
mix-blend-mode: overlay;
opacity: .4;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment