Guest User

Untitled

a guest
Oct 20th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. /*------ Background image ------*/
  2. .bg-image {
  3. /* The image used */
  4. background-image: url("bgd.jpg");
  5.  
  6. /* Add the blur effect */
  7. filter: blur(4px);
  8. -webkit-filter: blur(4px);
  9.  
  10. /* Full height */
  11. height: 100%;
  12.  
  13.  
  14. /* Center and scale the image nicely */
  15. background-position: center;
  16. background-repeat: no-repeat;
  17. background-size: cover;
  18. }
  19.  
  20. /* ------------------------ */
Add Comment
Please, Sign In to add comment