"pricing table with hover effect"
Bootstrap 3.3.0 Snippet by prakash044

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<div class="pricingTable-header">
<span class="heading">
<h3>Standard</h3>
<i class="fa fa-caret-square-o-right"></i>
</span>
<span class="price-value">$<span>10</span><span class="month">/per month</span></span>
</div>
<div class="pricingContent">
<ul>
<li>50GB Disk Space</li>
<li>50 Email Accounts</li>
<li>50GB Monthly Bandwidth</li>
<li>50 Domains</li>
<li>Unlimited Subdomains</li>
</ul>
</div><!-- / CONTENT BOX-->
<div class="pricingTable-sign-up">
<a href="#" class="btn btn-block btn-default">sign up</a>
</div><!-- BUTTON BOX-->
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="pricingTable">
<div class="pricingTable-header">
<span class="heading">
<h3>Standard</h3>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
.pricingTable{
text-align: center;
background: #e6e6e6;
}
.pricingTable:hover{
margin-top: 10px;
}
.pricingTable > .pricingTable-header{
color:#fff;
}
.pricingTable .pricingTable-header > .heading{
display: block;
padding: 20px 0;
background: #ed687c;
}
.pricingTable .pricingTable-header > .heading > h3{
margin: 0 0 12px 0;
text-transform: uppercase;
font-weight: bold;
}
.pricingTable .pricingTable-header > .heading > i{
font-size: 70px;
opacity: 0.5;
}
.pricingTable .pricingTable-header > .price-value{
display: block;
background: #ed687c;
margin: 20px 0;
padding: 10px 0;
font-size: 47px;
font-weight: bold;
}
.pricingTable .pricingTable-header > .price-value > .month{
display: block;
font-size: 14px;
}
.pricingTable > .pricingContent{
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: