Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 KB | None | 0 0
  1. <section class="hero-image">
  2. <div class="ui container wrapper">
  3. <h1>Lorem ipsum dolor sit amet</h1>
  4. <br>
  5. <p>consectetur adipiscing elit, sed do eiusmod</p>
  6. <br>
  7. <button class="ui green button">tempor incididunt ut labore</button>
  8. </div>
  9.  
  10. </section>
  11. <section class="ui container stackable logo-carousel">
  12. <img src="{{asset('images/zip.png')}}" alt="">
  13. </section>
  14. <section class="about">
  15. <div class="ui container wrapper">
  16. <h3 class="ui headline">Welcome to Find Kind Media!</h3>
  17. <p class="description">Hi, My name is Marika. I am Web Developer who has a love & passion for helping people.
  18. <br>
  19.  
  20.  
  21. </p>
  22. <img src="{{public_path('images/charity.jpg')}}" alt="">
  23. </div>
  24. </section>
  25.  
  26. .hero-image {
  27. background: url('/images/charity.jpg');
  28. background-position: center,top;
  29. background-repeat: no-repeat,no-repeat;
  30. background-size: cover,cover;
  31. height: 100%;
  32.  
  33. }
  34.  
  35. .hero-image:before {
  36. content: '';
  37. position: absolute;
  38. top: 0;
  39. right: 0;
  40. bottom: 0;
  41. left: 0;
  42. background-image: linear-gradient(to bottom right,#759FA2,#759FA2);
  43. opacity: .8;
  44. }
  45.  
  46. .about .wrapper {
  47. padding: 30px 20px 0;
  48. }
  49.  
  50. .description{
  51. color: #505050;
  52. line-height: 1.4;
  53. }
  54.  
  55. .logo-carousel {
  56. padding: 10px 20px 0;
  57. }
  58.  
  59.  
  60. .about {
  61.  
  62. background-color: #FBFAF8;
  63. width: 100%;
  64. }
  65.  
  66.  
  67. .hero-image .wrapper {
  68. align-items: center;
  69. display: -webkit-flex;
  70. height: 100%;
  71. position: relative;
  72. }
  73.  
  74. .hero-image h1 {
  75. font-size: 3.125em;
  76. color: #fff;
  77. line-height: 1.2;
  78. text-align: center;
  79. }
  80.  
  81.  
  82. .hero-image p {
  83. color: #fff;
  84. line-height: 1.2;
  85. text-align: center;
  86. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement