Added poprocket effect

An old Instagram effect
This commit is contained in:
Lucca G. P 2017-12-31 22:20:59 -02:00 committed by GitHub
parent b7153a937d
commit aadae52bec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
src/_poprocket.scss Normal file
View file

@ -0,0 +1,10 @@
//Poprocket effect
.filter-poprocket {
//filter: sepia(.45) contrast(1.25) brightness(1.75) saturate(1.3) hue-rotate(-5deg);
&::before {
background-image: radial-gradient(circle closest-corner, rgba(206, 39, 70, .84) 10%, rgba(255, 255, 255, 0)), radial-gradient(circle closest-corner, rgba(15,5,46,.84) 90%, rgba(255,255,255,0) 10%);
content: "";
mix-blend-mode: screen;
}
}