marker styling
by beej
HTML
<div class="marker">
<div class="price">$1,200</div>
<div>1 Bed 1 Bath</div>
</div>
<div class="stem">
</div>
CSS
body {
font-family: sans-serif;
font-size: 14px;
}
.marker, .stem {
background-color: #4B9200;
}
.marker {
color: white;
display: inline-block;
padding: 5px 10px;
border-radius: 5px;
text-shadow: 1px 1px 2px #555;
}
.price {
font-weight: bold;
}
.stem {
height: 15px;
width: 3px;
margin-left: 10px;
}