Skip to content

Instantly share code, notes, and snippets.

@yoksel
Last active April 6, 2016 15:21
Show Gist options
  • Save yoksel/5a2929c5708216587749a544cacabd9f to your computer and use it in GitHub Desktop.
Save yoksel/5a2929c5708216587749a544cacabd9f to your computer and use it in GitHub Desktop.
Maket checker
BODY:after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
min-height: 4000px;
pointer-events: none;
background-image: url(...);
background-position: center top;
background-repeat: no-repeat;
opacity: .2;
mix-blend-mode: difference;
}
@media ( min-width: 768px ) {
BODY:after {
background-image: url(...);
}
}
@media ( min-width: 1200px ) {
BODY:after {
background-image: url(...);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment