circle with double borders

by sundaramkumar

HTML

<div></div>

CSS

div {
    width: 5px;
    height: 5px;
    /* margin: 5px; */
    border-radius: 50%;
    background-color: #fff;
    border: 10px solid #23d0e3;
    box-shadow:  0 0 0 2px white, 0 0 0 5px #f8a65f; /* , 0 0 0 15px red; */
}