Last active
April 6, 2016 15:21
-
-
Save yoksel/5a2929c5708216587749a544cacabd9f to your computer and use it in GitHub Desktop.
Maket checker
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: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