Advertisement
Guest User

Untitled

a guest
Mar 28th, 2015
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. .wrapper {
  2. display: inline-block;
  3. position: relative;
  4. }
  5.  
  6. .overlay {
  7. position: absolute;
  8. top: 43%;
  9. left: 0;
  10. width: 100%;
  11. font-size: x-large;
  12. color: light-grey;
  13. text-align: center;
  14. font-family: "Lato","Helvetica Neue",Helvetica,Arial,sans-serif;
  15. }
  16.  
  17. .city{
  18. width: 100%;
  19. height: 100%;
  20. }
  21. <!--HTML-->
  22. <div class="row">
  23. <div class="col-md-12">
  24. <div class="wrapper">
  25. <img src="img/bg.jpg" class="city"> </img>
  26. <div class="overlay">
  27. <h2> Owesome title</h2>
  28. <button class="btn btn-spec"> Find out more </button>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement