Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. @media screen and (min-width: 400px)
  2. {
  3.  
  4. video {
  5. position: fixed; right: 0; bottom: 0;
  6. min-width: 100%; min-height: 100%;
  7. width: auto; height: auto; z-index: -100;
  8. background-size: cover;
  9. }
  10.  
  11. }
  12.  
  13. @media only screen and (max-width : 400px) {
  14. background: url(../images/tanisalimmobilebackground.jpg);
  15. background-size:cover;
  16.  
  17. video {
  18. display:none!important;
  19. }
  20.  
  21. }
  22.  
  23. @media only screen and (max-width : 400px) {
  24. someelement{
  25. background: url(../images/tanisalimmobilebackground.jpg);
  26. background-size:cover;
  27. }
  28. video {
  29. display:none!important;
  30. }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement