Guest User

Untitled

a guest
May 17th, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <style>
  2. html {
  3. background-repeat: no-repeat;
  4. background-position: 50% 0;
  5. background-image: url( 'img/index-mobile.png' );
  6. }
  7.  
  8. @media (min-width: 768px) {
  9. html {
  10. background-image: url( 'img/index-tablet.png' );
  11. }
  12. }
  13.  
  14. @media (min-width: 1024px) {
  15. html {
  16. background-image: url( 'img/index-desktop.png' );
  17. }
  18. }
  19.  
  20. body {
  21. opacity: .5;
  22. }
  23. </style>
Add Comment
Please, Sign In to add comment