Phone Number Panel

by Charles Butler

HTML

<table class="pricing-table">
	<thead>
		<tr class="plan">
			<td class="green">
				<h2>Light</h2>
				<em>Great for small business</em>
			</td>
			<td class="orange">
				<h2>Run</h2>
				<em>Great for small business</em>
			</td>
			<td class="green">
				<h2>Fly</h2>
				<em>Great for small business</em>
			</td>
		</tr>
		<tr class="price">
			<td class="green">
				<p><span>$</span>5</p>
				<span>monthly</span>
				<a href="#">Join</a>
			</td>
			<td class="orange">
				<p><span>$</span>9<span>79</span></p>
				<span>monthly</span>
				<a href="#">Join</a>
			</td>
			<td class="green">
				<p><span>$</span>12</p>
				<span>monthly</span>
				<a href="#">Join</a>
			</td>
		</tr>
	</thead>
	
	<tbody>
		<tr class="clock-icon">
			<td>No Support</td>
			<td>24/7 Tech Support</td>
			<td>24/7 Tech Support</td>
		</tr>
		<tr class="basket-icon">
			<td>Basic Options</td>
			<td>Advanced Options</td>
			<td>Advanced Options</td>
		</tr>
		<tr class="star-icon">
			<td>100GB Storage</td>
			<td>200GB Storage</td>
			<td>500GB Storage</td>
		</tr>
		<tr class="heart-icon">
			<td>1TB Bandwidth</td>
			<td>2TB Bandwidth</td>
			<td>5TB Bandwidth</td>
		</tr>
	</tbody>
	
	<tfoot>
		<tr>
			<td>Known locally as "SoMa", this neighborhood was home to the dot.com boom and boasts.</td>
			<td>
				Known locally as "SoMa", this neighborhood was home to the dot.com boom and boasts.

				<div class="table-float">
					<span class="arrow"></span>
					<p>while our commercial director was on vacation, we came up with this</p>
					<p class="big">crazy price</p>
				</div>
			</td>
			<td>Known locally as "SoMa", this neighborhood was home to the dot.com boom and boasts.</td>
		</tr>
	</tfoot>
</table>

CSS

/* #########################################################

HOW TO CREATE CSS3 PRICING TABLES [TUTORIAL]

"How to create CSS3 Pricing Tables [Tutorial]" was specially made for DesignModo by our friend Valeriu Timbuc.

Links:
http://vtimbuc.net
http://designmodo.com
http://vladimirkudinov.com

######################################################### */



.pricing-table { min-width: 670px; }

.pricing-table td {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	vertical-align: text-top;
}



/* Plan Title */
.pricing-table thead .plan td {
	width: 210px;
	height: 42px;
	padding: 15px 0;
	text-align: center;

	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.pricing-table thead .plan h2 {
	font-family: 'Arial Black', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 22px;
	text-transform: uppercase;
	line-height: 24px;
}

.pricing-table thead .plan em {
	font-family: Georgia, Arial, Helvetica, sans-serif;
	font-style: italic;
	font-size: 14px;
	line-height: 16px;
}

.pricing-table thead .plan .green {
	color: #36611e;
	text-shadow: 1px 1px 0px rgba(255,255,255, .2);
	background: url(../img/green_pattern.png) repeat-x 0 0;
}

.pricing-table thead .plan .orange {
	color: #fafafa;
	text-shadow: 1px 1px 2px rgba(0,0,0, .4);
	background: url(../img/orange_pattern.png) repeat-x 0 0;
}



/* Plan Price Section */
.pricing-table thead .price td {
	position: relative;
	width: 210px;
	padding: 25px 0;

	font-family: 'Arial Black', Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	color: #b6b07c;

	background: #f9f8f1;
	background: -moz-linear-gradient(top,  #f9f8f1 0%, #f4f2e2 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f8f1), color-stop(100%,#f4f2e2));
	background: -webkit-linear-gradient(top,  #f9f8f1 0%,#f4f2e2 100%);
	background: -o-linear-gradient(top,  #f9f8f1 0%,#f4f2e2 100%);
	background: -ms-linear-gradient(top,  #f9f8f1...