Advertisement
rajuahammad73

Sale Banner

Sep 10th, 2019
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.82 KB | None | 0 0
  1. <!--== Start Christmas Sale Banner Area ==-->
  2. <section class="christmas-banner-area mt-120 mt-md-80 mt-sm-60 bg-img" data-bg="assets/img/christmas/sale-bg.jpg">
  3.     <div class="container">
  4.         <div class="row">
  5.             <div class="col-lg-12 text-center">
  6.                 <div class="christmas-banner-content">
  7.                     <h4>Christmas Offer </h4>
  8.                     <h2>Off 40%</h2>
  9.                     <a href="shop.html" class="btn btn-brand">Shop Now</a>
  10.                 </div>
  11.             </div>
  12.         </div>
  13.     </div>
  14. </section>
  15. <!--== End Christmas Sale Banner Area ==-->
  16.  
  17.  
  18. .christmas-banner-area {
  19.   padding: 112px 0 120px;
  20.   position: relative;
  21.  
  22.   @media #{$md-device} {
  23.     padding: 60px 0;
  24.   }
  25.  
  26.   @media #{$sm-device} {
  27.     padding: 50px 0;
  28.   }
  29.  
  30.   &:before {
  31.    background-color: rgba($black, 0.3);
  32.     content: '';
  33.     position: absolute;
  34.     left: 0;
  35.     top: 0;
  36.     height: 100%;
  37.     width: 100%;
  38.   }
  39.  
  40.   .christmas-banner-content {
  41.     h4 {
  42.       color: $white;
  43.       font-size: 60px;
  44.       font-family: 'Dancing Script', cursive;
  45.       line-height: 1;
  46.       font-weight: 700;
  47.       margin-bottom: 45px;
  48.  
  49.       @media #{$xs-device} {
  50.         font-size: 35px;
  51.       }
  52.     }
  53.  
  54.     h2{
  55.       color: $white;
  56.       font-size: 115px;
  57.       font-weight: 400;
  58.       line-height: 1;
  59.     }
  60.  
  61.     img {
  62.       display: block;
  63.       margin: auto;
  64.       max-width: 320px;
  65.     }
  66.  
  67.     .btn-brand {
  68.       background-color: $white;
  69.       color: $black-soft;
  70.       padding: 20px 60px;
  71.       margin-top: 45px;
  72.  
  73.       @media #{$md-device} {
  74.         margin-top: 38px;
  75.       }
  76.  
  77.       @media #{$sm-device} {
  78.         margin-top: 18px;
  79.         padding: 10px 25px;
  80.       }
  81.  
  82.       &:hover {
  83.        background-color: $brand-color;
  84.         color: $white;
  85.       }
  86.     }
  87.   }
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement