Advertisement
julong

background image -> blur

Aug 13th, 2014
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. body {
  2. position: absolute;
  3. top: 0; bottom: 0; left: 0; right: 0;
  4. width:100%;
  5. height: 100%;
  6. }
  7. body:before {
  8. content: "";
  9. position: absolute;
  10. height: 100%; width: 100%;
  11. background: url("{{URL::to("files/"."lg".$img->img)}}") no-repeat center center fixed;
  12. background-size: cover;
  13. background-position: center;
  14. -webkit-background-size: cover;
  15. -moz-background-size: cover;
  16. -o-background-size: cover;
  17. background-size: cover;
  18. opacity:0.6;
  19. z-index: -1;
  20. -webkit-filter: blur(2px);
  21. -moz-filter: blur(2px);
  22. -o-filter: blur(2px);
  23. -ms-filter: blur(2px);
  24. -webkit-filter: blur(2px);
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement