JSFiddle - React, Tailwind, and code Playground

by adamschwartz

HTML

<div></div>

CSS

div {
    background: white;
    width: 80px;
    height: 80px;
    border: dotted 10px #444;
    border-radius: 68px;
    -webkit-animation: loader 3s;
    -webkit-animation-iteration-count: infinite;
    margin: 60px auto;
}

@-webkit-keyframes loader {
    0% {
        -webkit-transform: rotateZ(0deg);
    }
    100% {
        -webkit-transform: rotateZ(360deg);
    }
}