ad-placement

by nathanziarek

HTML

<br><BR><BR><div class="ad-placement">
    <div class="ad-placement-image"><img src="http://lorempixel.com/140/160/"></div>
    <div class="ad-placement-proposition">Shop now for great savings!</div>
    <div class="ad-placement-cta">Click here!</div>
</div>
    <br><BR><BR><div class="ad-placement">
    <div class="ad-placement-proposition">Shop now for great savings!</div>
    <div class="ad-placement-cta">Click here!</div>
</div>

CSS

body { font-family: Helvetica }
.ad-placement {
    height: 40px;
    border: 1px solid #336699;
    position: relative;
    background: #99ccff;
    line-height: 40px;
    border-radius: 2px;
    font-size: .9em;
}

.ad-placement:before {
    content: "";
    border: 20px transparent solid;
    border-right-color: #336699;
    width: 0;
    height: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.ad-placement:after {
    content: "";
    border: 20px transparent solid;
    border-right-color: #fff;
    width: 0;
    height: 0;
    position: absolute;
    right: -1px;
    top: 0;
}
.ad-placement-image {
    width: 70px;
    height: 80px;
    top: -20px;
    left: 10px;
    position: absolute;
    line-height: 80px;
    text-align: center;
}

.ad-placement-image img {
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}

.ad-placement-image + .ad-placement-proposition {
    margin-left: 90px;
}
.ad-placement-proposition {
    margin-left: 15px;
}

.ad-placement-cta {
    position: absolute;
    right: 30px;
    top: 7px;
    height: 26px;
    line-height: 26px;
    background: #336699;
    color: white;
    padding: 0 10px;
    border-radius: 2px;
}