Guest User

Untitled

a guest
Jan 15th, 2017
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. << CSS >>
  2. .header {
  3. height: 100vh;
  4. background-color: #1e3749;
  5. z-index: 0;
  6.  
  7. }
  8. .bg {
  9. height: 100%;
  10. background-image: url("/Moja/img/bg2.png");
  11. background-repeat:no-repeat;
  12. background-size:contain;
  13. background-position:left bottom;
  14. background-color: transparent;
  15. z-index: 10;
  16. }
  17. .header-text {
  18. position: fixed;
  19. padding-top: 30vh;
  20. z-index: 0;
  21. }
  22.  
  23. << HTML >>
  24. <div class="container-fluid">
  25. <div class="header">
  26. <div class="text-center header-text">
  27. <h1>Test test</h1>
  28. <p>To tylko zabawa</p>
  29. </div>
  30. <div class="text-center bottom-align-text">
  31. <i class="fa fa-arrow-down fa-3x arrow" aria-hidden="true"></i>
  32. </div>
  33. <div class="bg"></div>
  34. </div>
  35. </div>
Advertisement
Add Comment
Please, Sign In to add comment