CHECK MARK CSS #3

by bizamajig

HTML

<span class="bizamajig-ui-input-search-box-selected"></span>

CSS

.bizamajig-ui-input-search-box-selected {
    display:inline-block;
    width: 22px;
    height:22px;
    background: #c9ff00;
    border-radius:50%;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
    transform: rotate(45deg);
}

.bizamajig-ui-input-search-box-selected:before{
    content:"";
    position: absolute;
    width:3px;
    height:9px;
    background-color:#fff;
    left:11px;
    top:6px;
}

.bizamajig-ui-input-search-box-selected:after{
    content:"";
    position: absolute;
    width:3px;
    height:3px;
    background-color:#fff;
    left:8px;
    top:12px;
}