Loading Centered

by Kirubel Girma

HTML

<div class="icfull">
  <div class="loicon">
    <div class="lcir icfirst"></div>
    <div class="lcir icsecond"></div>
    <div class="lcir icthird"></div>
  </div>
</div>

CSS

* {
  margin: 0;
}

.lcir {
  display: inline-block;
  height: 1em;
  width: 1em;
  background: cornflowerblue;
  border-radius: 50%;
}

.loicon {
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 3.5em;
  height: 1em;
}