Advertisement
Guest User

Untitled

a guest
Nov 23rd, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <div id="video-section" class="dark-section">
  2. <div class="home"></div>
  3. <div class="fullscreen-img" style="background-image: url(http://upanh.biz/images/2014/11/23/bg1.jpg)"></div>
  4. </div>
  5.  
  6. *{
  7. margin: 0;
  8. padding: 0;
  9. }
  10.  
  11. #video-section{
  12. margin: 0 auto;
  13. width: 1230px;
  14. height: 500px;
  15. }
  16.  
  17. .dark-section{
  18. background-color: black;
  19. }
  20.  
  21. .home{
  22. display: table;
  23. height: 500px;
  24. left: 0;
  25. position: relative;
  26. top: 0;
  27. width: 100%;
  28. }
  29.  
  30. .fullscreen-img {
  31. background-position: center center;
  32. background-repeat: no-repeat;
  33. background-size: cover;
  34. height: auto;
  35. left: 0;
  36. min-height: 500px;
  37. position: fixed;
  38. top: 0;
  39. width: 100%;
  40. z-index: -1;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement