Rotate 180

global.css
.rotate-180 {
  animation: rotate-180 1s ease-in-out both;
}

@keyframes rotate-180 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

Based on @Ibelick

Designed with ♥ by @AdrianGerman