TL Coupon

by Harsh Kansagara

HTML

<div class="tl_coupon_wrap">
  <ul class="tl_coupon">
    <li class="tlc_discount">
      <p class="tlc_amount">20%</p>
      <p class="tlc_off">OFF</p>
    </li>
    <li class="tlc_desc">
      <p class="tlc_title">HostGator Promo Code</p>
      <p class="tlc_code">TechLilaHG</p>
    </li>
    <li class="tlc_button">
      <a href="#">Click Here</a>
    </li>
  </ul>
</div>

CSS

.text_overflow_off{
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.tl_coupon_wrap{
  text-align:center;
}
.tl_coupon{
  background:#45a4ca;
  overflow:hidden;
  list-style:none;
  padding:0;
  margin:0;
  border-radius:5px;
  box-shadow:0 5px 0px 0 #308fb5;
  box-sizing:border-box;
  font-family:Arial;
  display:inline-block;
  padding:0px 10px;
}
.tl_coupon p{
  margin:0;
  color:#fff;
}
.tl_coupon > li{
  float:left;
  padding:20px 10px;
  text-align:left;
}
.tlc_amount{
  font-size:36px;
  font-weight:700;
  line-height:36px;
}
.tlc_off{
  font-size:20px;
  font-weight:700;
  line-height:20px;
}
.tlc_title{
  font-size:20px;
}
.tlc_code{
  font-size:20px;
  font-weight:700;
  border:2px dashed rgba(255,255,255,.5);
  text-align:center;
  padding:5px 10px;
}
.tlc_button a{
  height:40px;
  line-height:40px;
  padding:0px 15px;
  border-radius:5px;
  text-decoration:none;
  color:#fff;
  display:inline-block;
  background:#e4514f;
  box-shadow:0 3px 0px 0 #d33737;
  margin-top:10px;
}
.tlc_button a:hover{
  background:#d33737;
  box-shadow:0 3px 0px 0 #b72424;
}

@media only screen and (max-width:768px){
   .tl_coupon{
     padding:0
   }
  .tl_coupon > li{
    float:none;
    text-align:center;
    padding:10px;
  }
  .tlc_desc{
    background:rgba(0,0,0,0.1);
  }
  .tlc_button a{
    margin:0
  }
}