Pricing Table

by jezzipin

HTML

<div id="pricing_table" class="content_block">
 <div class="clearfloat">
          <h2 class="page_title"></h2>
          <a class="b2t_link" href="#"></a>
        </div>

<div class="pricing_box radius-left"><div class="header"><span>Starter kit</span></div>
<div class="feature_container">
<ul>
<li class="even"><strong class="yes">Branded Site</strong></li>
<li class="odd"><strong class="yes">Up to 2 Users</strong></li>
<li class="even"><strong class="yes">Branded Emails</strong></li>
<li class="odd"><strong class="yes">feature4</strong></li>
<li style="display:none;" class="even"><strong class="yes"></strong></li>
</ul>
</div>
<a href="#">Read more</a>
<p></p><h3><span>From:</span> £25</h3><p class="button signup"><a href="http://icams01.sodium.hireserve-dev.com/icamsdev/v6/a2g_account_selection.complete_stage_one?p_base_package_id=1">Select</a></p>
</div>


<div class="pricing_box large radius-center">
<div class="header"><span>Regular Recruiter</span></div>
<div class="feature_container">
<ul>
<li class="even"><strong class="yes">Branded Site</strong></li>
<li class="odd"><strong class="yes">From £18 when not actively recruiting</strong></li>
<li class="even"><strong class="yes">Candidate Screening</strong></li>
<li class="odd"><strong class="yes">feature4</strong></li>
<li style="display:none;" class="even"><strong class="yes"></strong></li>
</ul>
</div>
<a href="#">Read more</a>
<p></p><h3><span>From:</span> £40</h3><p class="button signup"><a href="http://icams01.sodium.hireserve-dev.com/icamsdev/v6/a2g_account_selection.complete_stage_one?p_base_package_id=2">Select</a></p></div>

<div class="pricing_box radius-right"><div class="header"><span>The Big Pack </span></div>
<div class="feature_container">
<ul>
<li class="even"><strong class="yes">Beskpoke Site Design</strong></li>
<li class="odd"><strong class="yes">Facebook &amp; Twitter Posting</strong></li>
<li class="even"><strong class="yes">Candidate Screening</strong></li>
<li class="odd"><strong...

CSS

/*
******************************** PRICING TABLE CSS **********************************
*/

.pricing_box.radius-right {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.pricing_box {
    background: none repeat scroll 0 0 #FFFFFF;
    border: 1px solid #CCCCCC;
    box-shadow: 0 2px 10px -4px rgba(0, 0, 0, 0.5);
    float: left;
    margin-left: -1px;
    padding: 0 0 20px;
    text-align: center;
    margin-bottom: 50px;
    width: 30%;
	margin-top: 15px;
}

.pricing_box .header {
    height: 68px;
    width: 100%;
}
.pricing_box .header {
    background: url("/img/priceTableBackground.png") repeat scroll 0 0 transparent;
    border-bottom: 1px solid #CCCCCC;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-shadow: 0 1px 1px #FFFFFF;
	color: #3F4950;
}

.pricing_box .header span {
    font-size: 16px;
    font-weight: bold;
    line-height: 28px;
    position: relative;
    top: 20px;
}

.pricing_box ul {
    list-style: url("/img/tick.gif") inside;
    /*list-style: none outside none;*/
    margin-bottom: 15px !important;
    text-align: left;
	/*margin-left: -40px;*/
}

.ie7 .pricing_box ul{
	margin-left: 0px;
}

.pricing_box ul li.even {
    background: none repeat scroll 0 0 #FFFFFF;
}
.pricing_box ul li {
    line-height: 25px;
    list-style-type: none !important;
    margin-left: 0;
    padding-left: 20px !important;
}

.pricing_box ul li.odd {
    background: none repeat scroll 0 0 #F9F9F9;
}

.pricing_box strong.yes {
    background-position: 0 -15px;
}
.pricing_box strong {
    /*color: gray;*/
	color: #3F4950;
    font-style: normal;
    height: 12px;
    padding-left: 20px;
	font-size: 12px;
}

.pricing_box p {
    line-height: 28px;
}

.pricing_box h3 {
    display: block;
    font-size: 55px;
    margin: 20px 0;
	color: #3F4950;
}

.pricing_box p.button {
    background: url("/img/priceTableLowerButton.png") no-repeat scroll left 0 transparent;
    float: none;
    height: 40px;
}
p.button {
   ...