Created
October 23, 2014 13:17
-
-
Save bbredewold/6808d7edb2312eecaacf to your computer and use it in GitHub Desktop.
Fixed wallpapers in IOS
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
.site_wall_sharp{ | |
position: fixed; | |
top:0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
background: url('../img/ma_back.jpg') no-repeat center center scroll; // OPLOSSING VOOR IOS :) | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
} | |
.site_wall_blur { | |
position: fixed; | |
top:0; | |
right: 0; | |
bottom: 0; | |
left: 0; | |
background: url('../img/ma_back_blur.jpg') no-repeat center center scroll; | |
-webkit-background-size: cover; | |
-moz-background-size: cover; | |
-o-background-size: cover; | |
background-size: cover; | |
opacity: 0; | |
-webkit-transform: translate3d(0,0,0); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment