css throbber

by sthag

HTML

<div class="throbber-wrap">
  <span class="throbber"></span>
</div>

SCSS

.throbber-wrap {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px;
  line-height: 50px;
  background-color: white /* change to transparent */
}
.throbber {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  margin: -29px;
  border: 4px solid;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  color: #397CE9;
  background-color: transparent;
  animation: load .8s linear infinite;
}

@keyframes load {
  100% {
    transform: rotate(360deg);
  }
}