Executive Wellness Package Options

by mlms13

HTML

<div class="package" id="green">
    <div class="title">
        <h2>Green Package</h2>
        <h3>$2000</h3>
    </div>
    <div class="description">Package Options....</div>
</div>

CSS

body {
    font-family: sans-serif;
    margin: 30px;
}
.package {
    padding: 5px;
    width: 700px;
}
#green {
    background: #bfa;
}
.package .title {
    float: left;
    padding: 36px 12px;
    width: 120px;
}
.package .title h2 {
    font-size: 18px;
}
#green .title h2 {
    color: #050;
    font-weight: bold;
}
.package .title h3 {
    color: #444;
    font-size: 15px;
    font-style: italic;
    font-weight: bold;
    margin: 0;
    padding: 6px 0;
}
.package .description {
    background: #fff;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.25);
    margin-left: 150px;
    min-height: 120px;
    padding: 12px;
    position: relative;
}
.package .description:before, .package .description:after {
    border-width: 72px 36px;
    border-style: solid;
    border-color: transparent;
    content: "";
    position: absolute;
}
.package .description:before {
    border-right-color: #aea;
    left: -74px;
    top: 1px;
}
.package .description:after {
    border-right-color: #fff;
    left: -72px;
    top: 0;
}