Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <div class="about-container">
  2. <h1>About us</h1>
  3. <div class="color-overlay"></div>
  4. </div>
  5.  
  6.  
  7. .about-container{
  8. width: 100%;
  9. height: 425px;
  10. background: url(../images/about-banner.jpg) no-repeat;
  11. background-size: cover;
  12. background-position: top center;
  13. overflow: hidden;
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. color: #c69963;
  18. position: relative;
  19. }
  20.  
  21. .color-overlay{
  22. width: 100%;
  23. height: 100%;
  24. background: #000;
  25. opacity: .7;
  26. position: absolute;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement