JSFiddle - React, Tailwind, and code Playground

by Chris Buttery

HTML

<div class="deform">
    <div class="rotate">
        <div class="counterrotate">
            <div class="inner">A</div>
        </div>
    </div>
</div>

CSS

.deform {
    width: 200px;
    height: 200px;
    -webkit-transform: scaleX(3);
    background-color: lightblue;
    left: 270px;
    position: absolute;
    top: 50px;
    border-radius: 50%;
}
.rotate {
    width: 100%;
    height: 100%;
    -webkit-animation: circle 10s infinite linear;
    -webkit-transform-origin: 50% 50%;
}
.counterrotate {
    width: 50px;
    height: 50px;
    -webkit-animation: ccircle 10s infinite linear;
}
.inner {
    width: 50px;
    height: 50px;
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: red;
    display: block;
    -webkit-transform: scaleX(0.33);
}
@-webkit-keyframes circle {
    from {
        -webkit-transform: rotateZ(0deg)
    }
    to {
        -webkit-transform: rotateZ(360deg)
    }
}
@-webkit-keyframes ccircle {
    from {
        -webkit-transform: rotateZ(360deg)
    }
    to {
        -webkit-transform: rotateZ(0deg)
    }
}