DISCO

by Nofiden Noble

HTML

<a class="status-dot-green"></a>

CSS

.status-dot-green {
    height: 18px;
    width: 18px;
    background-color: #A4CF72;
    border-radius: 50%;
    display: inline-block;
  
    cursor: pointer;
}

a.status-dot-green:hover {
    background-color:#A4CF72;
    border:2px solid black;    
    height:18px;
    border-radius:50%;
    -moz-border-radius:50%;
    -webkit-border-radius:50%;
    width:18px;
}