Pricing Table — стиль 6

Подробное описание и демонстрация работы таблицы цен под номером №6 для библиотеки Bootstrap. Html и CSS код для реализации блока table price на сайте как на изображении.

Демо Таблицы цен — стиль 6

$10per month

Стандарт

  • 50GB Disk Space
  • 50 Email Accounts
  • 50GB Monthly Bandwidth
  • 50 Domains
  • Unlimited Subdomains
$20per month

Бизнес

  • 50GB Disk Space
  • 50 Email Accounts
  • 50GB Monthly Bandwidth
  • 50 Domains
  • Unlimited Subdomains
$40per month

Extra

  • 50GB Disk Space
  • 50 Email Accounts
  • 50GB Monthly Bandwidth
  • 50 Domains
  • Unlimited Subdomains
html разметка для реализации блока прайсов

<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<div class="pricingTable-header">
<span class="price-value">$10<span class="mo">per month</span></span>
<span class="heading">
<h3>Standard</h3>
</span>
</div>
<div class="pricingContent">
<ul>
<li><b>50GB</b> Disk Space</li>
<li><b>50</b> Email Accounts</li>
<li><b>50GB</b> Monthly Bandwidth</li>
<li><b>50</b> Domains</li>
<li>Unlimited Subdomains</li>
</ul>
</div><!-- /  CONTENT BOX-->
<div class="pricingTable-sign-up">
<a href="#" class="btn btn-block btn-default">purchase</a>
</div><!-- BUTTON BOX-->
</div>
</div>
</div>
</div>

css разметка для реализации блока прайсов

.pricingTable{
text-align: center;
background: #fff;
}
.pricingTable:hover .btn-block,
.pricingTable:hover .price-value{
background: #ffa000;
}
.pricingTable > .pricingTable-header{
color:#333333;
padding-top: 40px;
}
.pricingTable-header > .price-value{
display: block;
padding: 25px 0;
background: #ff5722;
width: 100px;
height: 100px;
border-radius: 50%;
margin: 0 auto;
font-size: 24px;
color:#fff;
transition: all 0.4s ease 0s;
font-weight: 700;
}
.price-value > .mo{
display: block;
font-size: 12px;
}
.pricingTable-header > .heading{
display: block;
padding-top: 20px;
}
.heading > h3{
margin: 0;
text-transform: capitalize;
font-weight: 700;
}
.pricingTable > .pricingContent{
margin-top: 30px;
}
.pricingTable > .pricingContent > ul{
list-style: none;
padding: 0;
margin-bottom: 0;
}
.pricingTable > .pricingContent > ul > li{
padding: 10px 0;
border-top: 1px solid #d6d6d6;
}
.pricingTable-sign-up{
padding: 40px 0;
border-top: 1px solid #d6d6d6;
}
.pricingTable-sign-up > .btn-block{
width: 50%;
margin: 0 auto;
padding: 10px 0;
border-radius: 0px;
background: #ff5722;
color:#fff;
text-transform: uppercase;
font-size: 17px;
border: 0px none;
transition: all 0.4s ease 0s;
}
.mid .price-value,
.mid .btn-block{
background: #ffa000;
}
@media screen and (max-width: 990px){
.pricingTable{
margin-bottom: 20px;
}
}



Теги:
0

Оставить своё мнение

Ваш e-mail не будет опубликован. Обязательные поля помечены *