"Pricing Table : Demo1"
Bootstrap 3.0.0 Snippet by napsterbd

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="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.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="price-value">10<span class="currency">$</span></span>
<h3 class="title">Standard</h3>
</div>
<ul class="pricing-content">
<li>50GB Disk Space</li>
<li>50 Email Accounts</li>
<li>50GB Monthly Bandwidth</li>
<li>10 Subdomains</li>
<li>15 Domains</li>
</ul>
<a href="#" class="pricingTable-signup">Sign Up</a>
</div>
</div>
<div class="col-md-3 col-sm-6">
<div class="pricingTable green">
<div class="pricingTable-header">
<span class="price-value">20<span class="currency">$</span></span>
<h3 class="title">Business</h3>
</div>
<ul class="pricing-content">
<li>60GB Disk Space</li>
<li>60 Email Accounts</li>
<li>60GB Monthly Bandwidth</li>
<li>15 Subdomains</li>
<li>20 Domains</li>
</ul>
<a href="#" class="pricingTable-signup">Sign Up</a>
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
.demo{ background: #a7a7a7; }
.pricingTable{
background: #fff;
padding-bottom: 20px;
overflow: hidden;
}
.pricingTable .pricingTable-header{
margin-bottom: 40px;
position: relative;
z-index: 1;
}
.pricingTable .pricingTable-header:before{
content: "";
width: 100%;
height: 150%;
background: #606aa3;
position: absolute;
top: -90%;
left: -20%;
z-index: -1;
transform: rotate(-42deg);
}
.pricingTable .pricingTable-header:after{
content: "";
width: 100%;
height: 190%;
background: #727cb6;
position: absolute;
top: -76%;
right: -16%;
z-index: -2;
transform: rotate(20deg);
}
.pricingTable .price-value{
display: inline-block;
width: 50%;
padding: 30px 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: